/*
Theme Name: WebBuildDev
Theme URI: https://webbuilddev.com
Author: WebBuildDev Agency
Author URI: https://webbuilddev.com
Description: Custom WordPress theme for WebBuildDev — Web & Software Development Agency. Dark, orange-accented design for USA, Australia and Dubai markets.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: webbuilddev
Tags: custom-theme, dark, agency, one-page, responsive
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (THEME TOKENS)
   ============================================================ */
:root {
  --orange:       #FD5800;
  --orange-bright:#FF8C33;
  --orange-dim:   rgba(255,107,0,0.15);
  --orange-glow:  rgba(255,107,0,0.35);
  --white:        #FFFFFF;
  --white-soft:   rgba(255,255,255,0.65);
  --black:        #000000;
  --surface:      #0A0A0A;
  --surface-2:    #111111;
  --surface-3:    #181818;
  --border:       rgba(255,255,255,0.07);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.wbd-cursor {
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s ease, width .2s ease, height .2s ease;
}

.wbd-cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--orange-bright);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .35s cubic-bezier(.17,.67,.35,1), width .25s, height .25s, opacity .25s;
  opacity: .7;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: .95;
  letter-spacing: .02em;
}

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: .03em;
}

h3 {
  font-family: 'Bebas Neue', sans-serif;
}

.section-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--white-soft);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 712px;
  margin-top: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--orange);
  color: var(--black);
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 30px var(--orange-glow);
}

.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 40px var(--orange-glow);
  color: var(--black);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.2);
  transition: border-color .2s, color .2s, transform .2s;
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--black);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}

.btn-dark:hover {
  background: #111;
  transform: translateY(-2px);
  color: var(--white);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  to { transform: rotate(-360deg); }
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.wbd-section {
  padding: 100px 6vw;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.wbd-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   HERO — LIGHTNING ANIMATION
   ============================================================ */
.wbd-lightning-flash {
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 0, 0.06);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  animation: lightningFlash 6s ease-in-out infinite;
}

@keyframes lightningFlash {
  0%   { opacity: 0; }
  48%  { opacity: 0; }
  50%  { opacity: 1; }
  51%  { opacity: 0; }
  52%  { opacity: 0.6; }
  53%  { opacity: 0; }
  54%  { opacity: 0.3; }
  56%  { opacity: 0; }
  100% { opacity: 0; }
}

.wbd-lightning-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bolt-1 {
  opacity: 0;
  filter: drop-shadow(0 0 6px #FF6B00) drop-shadow(0 0 14px rgba(255,107,0,0.4));
  animation: boltAppear1 6s ease-in-out infinite;
}
.bolt-2 {
  opacity: 0;
  filter: drop-shadow(0 0 4px #FF8C33);
  animation: boltAppear2 6s ease-in-out infinite;
}
.bolt-3 {
  opacity: 0;
  filter: drop-shadow(0 0 5px #FF6B00);
  animation: boltAppear3 6s ease-in-out infinite;
}

@keyframes boltAppear1 {
  0%,49% { opacity: 0; }
  50%    { opacity: 1; }
  51%    { opacity: 0.2; }
  52%    { opacity: 0.9; }
  54%,100%{ opacity: 0; }
}
@keyframes boltAppear2 {
  0%,52% { opacity: 0; }
  53%    { opacity: 1; }
  54%    { opacity: 0.1; }
  55%,100%{ opacity: 0; }
}
@keyframes boltAppear3 {
  0%,51% { opacity: 0; }
  52%    { opacity: 0.7; }
  53%    { opacity: 0; }
  54%    { opacity: 0.4; }
  56%,100%{ opacity: 0; }
}

.bolt-streak {
  opacity: 0;
  stroke: rgba(255,107,0,0.12);
  stroke-width: 1;
  fill: none;
  animation: streakAnim 6s ease-in-out infinite;
}

@keyframes streakAnim {
  0%,48%  { opacity: 0; }
  50%     { opacity: 0.5; }
  52%     { opacity: 0; }
  53%     { opacity: 0.3; }
  57%,100%{ opacity: 0; }
}

.wbd-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(255,107,0,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,107,0,.06) 0%, transparent 60%);
}

.wbd-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 75%, transparent 100%);
}

.wbd-hero__content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.wbd-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  color: var(--orange-bright);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp .6s ease both;
}

.wbd-hero__tag .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}

.wbd-hero__title {
  animation: fadeUp .7s .1s ease both;
}

.wbd-hero__title .accent { color: var(--orange); }
.wbd-hero__title .outlined {
  -webkit-text-stroke: 1.5px var(--white-soft);
  color: transparent;
}

.wbd-hero__sub {
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--white-soft);
  font-weight: 400;
  max-width: 580px;
  line-height: 1.75;
  animation: fadeUp .7s .2s ease both;
}

.wbd-hero__flags {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  animation: fadeUp .7s .25s ease both;
}

.flag-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--white-soft);
}

.wbd-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  animation: fadeUp .7s .35s ease both;
}

.wbd-hero__stats, .wbd-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
  animation: fadeUp .7s .45s ease both;
}

.wbd-hero__stats > div, .wbd-step {
  width: 100%;
  padding: 24px 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-top: .3rem;
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.wbd-ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--surface);
}

.wbd-ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
}

.wbd-ticker span {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white-soft);
  padding: 0 2.5rem;
}

.wbd-ticker span.sep {
  color: var(--orange);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.wbd-services {
  background: var(--surface);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}

.wbd-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.wbd-services__header {
  margin-bottom: 2rem;
}

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

.wbd-service-card {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background .25s;
  cursor: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
}

.wbd-service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width .4s ease;
}

.wbd-service-card:hover {
  background: var(--surface-3);
}

.wbd-service-card:hover::before {
  width: 100%;
}

.wbd-service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.wbd-service-card__icon svg {
  width: 26px;
  height: 26px;
}

.wbd-service-card h3 {
  font-size: 1.35rem;
  letter-spacing: .06em;
  margin-bottom: .7rem;
}

.wbd-service-card p {
  font-size: .85rem;
  color: var(--white-soft);
  line-height: 1.75;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.2rem;
  margin-bottom: 20px;
}

.service-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--orange-dim);
  color: var(--orange-bright);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ============================================================
   PLATFORMS SECTION
   ============================================================ */
.wbd-platforms {
  background: var(--black);
  padding: 100px 6vw;
}

.wbd-platforms__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: start;
  margin-top: 3.5rem;
}

.wbd-platforms__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.platform-item {
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.8rem 1rem;
  gap: .9rem;
  transition: background .2s;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.platform-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width .35s ease;
}

.platform-item:hover {
  background: var(--surface-3);
}

.platform-item:hover::after {
  width: 100%;
}

.platform-item .plat-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-item .plat-icon-wrap svg {
  width: 36px;
  height: 36px;
  transition: filter .2s;
}

.platform-item:hover .plat-icon-wrap svg {
  filter: drop-shadow(0 0 6px var(--orange-glow));
}

.platform-item span {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white-soft);
  text-align: center;
}

.platform-item:hover span {
  color: var(--orange-bright);
}

/* ============================================================
   CONTACT FORM PANEL
   ============================================================ */
.wbd-contact-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.4rem;
  position: sticky;
  top: 100px;
}

.wbd-contact-panel__head {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: .5rem;
}

.wbd-contact-panel__head-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wbd-contact-panel h3 {
  font-size: 1.7rem;
  letter-spacing: .06em;
}

.wbd-contact-panel__sub {
  font-size: .8rem;
  color: var(--white-soft);
  margin-bottom: 1.6rem;
  line-height: 1.65;
}

/* FORM FIELDS */
.wbd-form-group {
  margin-bottom: 1rem;
}

.wbd-form-group label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-bottom: .45rem;
}

.wbd-form-group input,
.wbd-form-group select,
.wbd-form-group textarea {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.wbd-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23FF6B00' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.wbd-form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.wbd-form-group input:focus,
.wbd-form-group select:focus,
.wbd-form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

.wbd-form-group textarea {
  resize: vertical;
  min-height: 88px;
}

.wbd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
}

.wbd-btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 4px;
  padding: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  transition: background .2s, transform .2s, box-shadow .2s;
  margin-top: 1.2rem;
  box-shadow: 0 0 24px var(--orange-glow);
}

.wbd-btn-submit:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 32px var(--orange-glow);
}

.wbd-form-note {
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  margin-top: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
}

.wbd-form-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.wbd-form-success.show {
  display: block;
}

.wbd-form-success__icon {
  width: 64px;
  height: 64px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.wbd-form-success h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .06em;
  color: var(--orange);
  margin-bottom: .4rem;
}

.wbd-form-success p {
  font-size: .83rem;
  color: var(--white-soft);
  line-height: 1.7;
}

/* ============================================================
   WHY US SECTION — TABS
   ============================================================ */
.wbd-why {
  background: var(--surface);
  padding: 100px 6vw;
}
.wbd-why-about {
  background: var(--black);
}

.wbd-why__title em {
  color: var(--orange);
  font-style: normal;
}

.wbd-why__body {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
}

.wbd-why__tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--border);
}

.wbd-why__tab {
  font-family: 'Manrope', sans-serif;
  padding: 1.6rem 1.8rem;
  cursor: pointer;
  border: none;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  transition: background .2s;
  background: transparent;
  text-align: left;
  outline: none;
  width: 100%;
}

.wbd-why__tab:last-child {
  border-bottom: none;
}

.wbd-why__tab::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform .3s ease;
  transform-origin: bottom;
}

.wbd-why__tab.active {
  background: var(--orange-dim);
}

.wbd-why__tab.active::before {
  transform: scaleY(1);
}

.wbd-why__tab:hover {
  background: rgba(255,255,255,.02);
}

.wbd-why__tab-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: rgba(255,107,0,.2);
  line-height: 1;
  min-width: 2rem;
  transition: color .2s;
}

.wbd-why__tab.active .wbd-why__tab-num {
  color: var(--orange);
}

.wbd-why__tab-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white-soft);
  letter-spacing: .04em;
  transition: color .2s;
}

.wbd-why__tab.active .wbd-why__tab-label {
  color: var(--white);
}

.wbd-why__panels {
  position: relative;
  min-height: 320px;
  background: var(--surface-2);
}

.wbd-why__panel {
  position: absolute;
  inset: 0;
  padding: 2.8rem 2.4rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}

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

.wbd-why__panel-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

.wbd-why__panel-icon svg {
  width: 24px;
  height: 24px;
}

.wbd-why__panel h3 {
  font-size: 1.8rem;
  letter-spacing: .06em;
  color: var(--white);
  margin-bottom: .8rem;
  line-height: 1;
}

.wbd-why__panel p {
  font-size: .88rem;
  color: var(--white-soft);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.wbd-why__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.wbd-why__chip {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  color: var(--orange-bright);
  padding: 5px 12px;
  border-radius: 3px;
}

.wbd-why__progress {
  height: 2px;
  background: var(--border);
  position: absolute;
  bottom: 0; left: 0; right: 0;
}

.wbd-why__progress-bar {
  height: 100%;
  background: var(--orange);
  transition: width .05s linear;
}

/* ============================================================
   MARKETS SECTION
   ============================================================ */
.wbd-markets {
  background: var(--black);
  padding: 100px 6vw;
}

.wbd-markets__header {
  margin-bottom: 4rem;
}

.wbd-markets__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.wbd-market-card {
  background: var(--surface-2);
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .25s;
}

.wbd-market-card::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width .4s;
}

.wbd-market-card:hover::after {
  width: 80%;
}

.wbd-market-card:hover {
  background: var(--surface-3);
}

.market-flag {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
}

.wbd-market-card h3 {
  font-size: 1.7rem;
  letter-spacing: .06em;
  margin-bottom: .5rem;
}

.wbd-market-card p {
  font-size: .82rem;
  color: var(--white-soft);
  line-height: 1.7;
}

.market-tz {
  margin-top: 1.2rem;
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  color: var(--orange-bright);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
}

/* ============================================================
   HOW WE WORK
   ============================================================ */
.hww-section {
  background: var(--surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hww-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 75% 35%, rgba(255,107,0,.10) 0%, transparent 70%),
    radial-gradient(ellipse 40% 55% at 15% 75%, rgba(255,107,0,.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hww-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hww-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6vw;
}

.hww-head {
  text-align: center;
  margin-bottom: 72px;
}

.hww-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.hww-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: .03em;
  color: var(--white);
}

.hww-title em {
  color: var(--orange);
  font-style: normal;
}

.hww-subtitle {
  color: var(--white-soft);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 1rem auto 0;
}

.hww-timeline {
  position: relative;
}

.hww-center-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,107,0,.4) 8%,
    rgba(255,107,0,.4) 92%,
    transparent 100%
  );
  z-index: 0;
}

.hww-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  min-height: 200px;
  position: relative;
  opacity: 1;
  transform: translateX(0);
  transition: opacity .7s ease, transform .7s ease;
}

.hww-item.hww-reveal-init.hww-odd  { opacity: 0; transform: translateX(-44px); }
.hww-item.hww-reveal-init.hww-even { opacity: 0; transform: translateX( 44px); }
.hww-item.visible {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.hww-slot-left {
  display: flex;
  justify-content: flex-end;
  padding: 28px 36px 28px 0;
}

.hww-slot-right {
  display: flex;
  justify-content: flex-start;
  padding: 28px 0 28px 36px;
}

.hww-empty {
  max-width: 390px;
  width: 100%;
}

.hww-node-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 28px 0;
}

.hww-connector {
  width: 36px;
  height: 1px;
  background: rgba(255,107,0,.4);
  position: absolute;
  top: 50%;
  z-index: 2;
}

.hww-connector.left  { right: 100%; margin-right: -1px; }
.hww-connector.right { left:  100%; margin-left:  -1px; }

.hww-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1.5px solid rgba(255,107,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(255,107,0,.08), 0 0 24px rgba(255,107,0,.22);
  opacity: 1;
  transform: scale(1);
  transition: opacity .5s .25s ease, transform .5s .25s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}

.hww-item.hww-reveal-init .hww-node {
  opacity: 0;
  transform: scale(.5);
}

.hww-item.visible .hww-node {
  opacity: 1 !important;
  transform: scale(1) !important;
}

.hww-node svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: var(--orange);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hww-node-num {
  position: absolute;
  top: -9px;
  right: -7px;
  background: var(--orange);
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-size: .6rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.hww-card {
  background: rgba(255,255,255,.032);
  border: 1px solid var(--border);
  padding: 28px 26px;
  max-width: 590px;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
}

.hww-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width .4s ease;
}

.hww-card:hover {
  background: var(--surface-3);
  border-color: rgba(255,107,0,.28);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.5), 0 0 28px rgba(255,107,0,.1);
}

.hww-card:hover::before { width: 100%; }

.hww-card__step {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}

.hww-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
  margin-bottom: .75rem;
}

.hww-card__desc {
  font-size: .84rem;
  color: var(--white-soft);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.hww-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.hww-tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,107,0,.12);
  color: var(--orange-bright);
  border: 1px solid rgba(255,107,0,.25);
  padding: 4px 10px;
}

.hww-card--mobile-only { display: none; }

/* ============================================================
   CTA BAND
   ============================================================ */
.wbd-cta-band {
  padding: 80px 6vw;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.wbd-cta-band h2 {
  color: var(--black);
  max-width: 600px;
  line-height: 1;
  letter-spacing: .02em;
}

.wbd-cta-band p {
  color: rgba(0,0,0,0.65);
  font-size: .95rem;
  margin: -.5rem 0;
  max-width: 500px;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.wbd-page-hero {
  padding: 160px 6vw 80px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.wbd-page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,0,0.06) 0%, transparent 70%);
}

.wbd-page-hero__content {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.wbd-page-hero__content h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  margin: 1rem 0;
  line-height: 1;
}

.wbd-page-hero__content p {
  font-size: 1.1rem;
  color: var(--white-soft);
  line-height: 1.8;
  max-width: 600px;
  margin-top: 1rem;
}

.wbd-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 2rem;
  font-size: .8rem;
  color: var(--white-soft);
}

.wbd-page-hero__breadcrumb a {
  color: var(--orange);
}

.wbd-page-hero__breadcrumb span:last-child {
  color: var(--white);
}

/* ============================================================
   COUNTRY CHIPS
   ============================================================ */
.wbd-hero__countries {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0;
}

.country-chip {
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--white-soft);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}

.country-chip:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ============================================================
   SERVICES — PAGE VARIANT
   ============================================================ */
.wbd-services--page { padding: 80px 6vw; }

.wbd-service-card__list {
  list-style: none;
  padding: 0;
  margin: .75rem 0 1rem;
}

.wbd-service-card__list li {
  color: var(--white-soft);
  font-size: .85rem;
  padding: .3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.wbd-service-card__list li::before {
  content: '›';
  color: var(--orange);
  position: absolute;
  left: 0;
}

.wbd-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--orange);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap .2s;
}

.wbd-service-card__link:hover { gap: .7rem; color: var(--orange-bright); }

/* ============================================================
   PLATFORMS — HOME FULL GRID
   ============================================================ */
.wbd-platforms--home {
  padding: 80px 6vw;
  text-align: center;
}

.wbd-platforms--home h2,
.wbd-platforms--home .section-label,
.wbd-platforms--home .section-intro {
  text-align: left;
}

.wbd-platforms__grid-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.wbd-platforms__cta {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-start;
}

/* ============================================================
   PLATFORMS PAGE — CARDS
   ============================================================ */
.wbd-platforms--page { padding: 80px 6vw; }

.wbd-plat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.wbd-plat-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color .3s, transform .3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wbd-plat-card:hover { border-color: var(--orange); }

.wbd-plat-card__icon {
  width: 56px;
  height: 56px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wbd-plat-card__icon svg { width: 28px; height: 28px; }

.wbd-plat-card h3 {
  font-size: 1.5rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: .05em;
}

.wbd-plat-card p {
  color: var(--white-soft);
  font-size: .9rem;
  line-height: 1.7;
}

.wbd-plat-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wbd-plat-card__list li {
  color: var(--white-soft);
  font-size: .83rem;
  padding: .25rem 0 .35rem 1rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.wbd-plat-card__list li:last-child { border-bottom: none; }

.wbd-plat-card__list li::before {
  content: '✦';
  color: var(--orange);
  position: absolute;
  left: 0;
  font-size: .6rem;
  top: .4rem;
}

/* ============================================================
   MARKETS — GLOBAL CHIPS
   ============================================================ */
.wbd-markets__also {
  text-align: center;
  margin-top: 3rem;
}

.wbd-markets__also-label {
  color: var(--white-soft);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.wbd-markets__also-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
}

.wbd-markets__also-chips span {
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--white-soft);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .83rem;
  font-weight: 600;
  transition: border-color .2s, color .2s;
}

.wbd-markets__also-chips span:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.wbd-markets--page { padding: 80px 6vw; }

.wbd-markets__intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.wbd-markets__intro p {
  color: var(--white-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.wbd-market-card--featured {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color .3s, transform .3s;
}

.wbd-market-card--featured:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
}

.wbd-market-card__list {
  list-style: none;
  padding: 0;
  margin: .75rem 0;
}

.wbd-market-card__list li {
  color: var(--white-soft);
  font-size: .85rem;
  padding: .3rem 0 .3rem 1rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.wbd-market-card__list li:last-child { border-bottom: none; }
.wbd-market-card__list li::before { content: '✦'; color: var(--orange); position: absolute; left: 0; font-size: .55rem; top: .5rem; }

.wbd-markets__global {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.wbd-global-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  transition: border-color .2s;
}

.wbd-global-card:hover { border-color: var(--orange); }
.wbd-global-card span { font-size: 2rem; }
.wbd-global-card strong { font-size: .85rem; color: var(--white-soft); font-weight: 600; }

/* ============================================================
   ABOUT PAGE — OLD CLASSES (kept for backward compatibility)
   ============================================================ */
.wbd-about { padding: 80px 6vw; }

.wbd-about__intro {
  max-width: 820px;
  margin: 0 auto 4rem;
}

.wbd-about__intro h2 { margin: 1rem 0; }

.wbd-about__intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.wbd-about__intro-text p {
  color: var(--white-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.wbd-about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  margin-bottom: 4rem;
  text-align: center;
}

.wbd-about__stat .stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--orange);
  line-height: 1;
}

.wbd-about__stat .stat-label {
  font-size: .8rem;
  color: var(--white-soft);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: .5rem;
}

.wbd-about__values { padding: 4rem 0; }
.wbd-about__values h2 { margin: 1rem 0 2.5rem; }

.wbd-about__values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.wbd-value-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  transition: border-color .3s, transform .3s;
}

.wbd-value-card:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.wbd-value-card__icon {
  width: 48px;
  height: 48px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.wbd-value-card__icon svg { width: 24px; height: 24px; }

.wbd-value-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .05em;
  margin-bottom: .5rem;
}

.wbd-value-card p {
  color: var(--white-soft);
  font-size: .88rem;
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.wbd-contact-page { padding: 80px 6vw; }

.wbd-contact-page__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.wbd-contact-page__info .section-label { margin-bottom: .5rem; }

.wbd-contact-page__info h2 {
  margin: .5rem 0 2rem;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.wbd-contact-page__info h2 .accent { color: var(--orange); }

.wbd-contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.wbd-contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.wbd-contact-info-item__icon {
  width: 44px;
  height: 44px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wbd-contact-info-item__icon svg { width: 20px; height: 20px; }

.wbd-contact-info-item strong {
  display: block;
  margin-bottom: .3rem;
  font-size: .95rem;
}

.wbd-contact-info-item p {
  color: var(--white-soft);
  font-size: .85rem;
  line-height: 1.6;
  margin: 0;
}

.wbd-contact-page__flags {
  display: flex;
  gap: .75rem;
  font-size: 1.6rem;
}

.wbd-contact-panel--page {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
}

/* ============================================================
   ABOUT PAGE — NEW OUR STORY SECTION
   ============================================================ */
.wbd-story-section {
  background: var(--black);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}

.wbd-story-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.wbd-story-section::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 50%;
  height: 70%;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,107,0,.09) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.wbd-story-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.wbd-story__left {
  position: relative;
}

.wbd-story__left .section-label {
  margin-bottom: .8rem;
}

.wbd-story__heading {
  margin: .5rem 0 2rem;
  line-height: .95;
}

.wbd-story__heading em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 0;
}

.wbd-story__lead {
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.wbd-story__body {
  font-size: .92rem;
  color: var(--white-soft);
  line-height: 1.85;
  margin-bottom: .9rem;
}

.wbd-story__quote {
  margin: 2rem 0;
  padding: 1.6rem 1.8rem;
  border-left: 3px solid var(--orange);
  background: rgba(255,107,0,.05);
  position: relative;
  font-size: .92rem;
  color: var(--white-soft);
  line-height: 1.8;
  font-style: italic;
}

.wbd-story__quote-mark {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 5rem;
  color: var(--orange);
  opacity: .18;
  line-height: 1;
  position: absolute;
  top: .2rem;
  left: 1.4rem;
  pointer-events: none;
  user-select: none;
}

.wbd-story__quote cite {
  display: block;
  margin-top: .8rem;
  font-size: .72rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}

.wbd-story__markets {
  margin-top: 2rem;
}

.wbd-story__markets-label {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-bottom: .75rem;
}

.wbd-story__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.wbd-story__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 100px;
}

/* STAT STACK */
.wbd-story__stats {
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.wbd-story__stat {
  padding: 1.8rem 2rem;
  position: relative;
  transition: background .2s;
}

.wbd-story__stat:hover {
  background: var(--surface-3);
}

.wbd-story__stat::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform .3s ease;
  transform-origin: bottom;
}

.wbd-story__stat:hover::before {
  transform: scaleY(1);
}

.wbd-story__stat-divider {
  height: 1px;
  background: var(--border);
  margin: 0 2rem;
}

.wbd-story__stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  color: var(--orange);
  line-height: 1;
  letter-spacing: .02em;
}

.wbd-story__stat-num span {
  font-size: 2rem;
  opacity: .7;
}

.wbd-story__stat-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin: .3rem 0 .5rem;
}

.wbd-story__stat-desc {
  font-size: .8rem;
  color: var(--white-soft);
  line-height: 1.65;
}

/* MILESTONES TIMELINE */
.wbd-story__milestones {
  margin-top: 2rem;
  border: 1px solid var(--border);
  background: var(--surface-2);
  padding: 1.8rem 2rem;
}

.wbd-story__milestones-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.4rem;
}

.wbd-story__timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.wbd-story__timeline::before {
  content: '';
  position: absolute;
  left: 3.6rem;
  top: .5rem;
  bottom: .5rem;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255,107,0,.35) 10%,
    rgba(255,107,0,.35) 90%,
    transparent 100%
  );
}

.wbd-story__tl-item {
  display: grid;
  grid-template-columns: 3.2rem 1rem 1fr;
  align-items: center;
  gap: .6rem;
  padding: .9rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.wbd-story__tl-item:last-child {
  border-bottom: none;
}

.wbd-story__tl-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: var(--orange);
  letter-spacing: .05em;
  line-height: 1;
  text-align: right;
}

.wbd-story__tl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid var(--surface-2);
  box-shadow: 0 0 0 2px rgba(255,107,0,.3);
  flex-shrink: 0;
  justify-self: center;
  position: relative;
  z-index: 1;
}

.wbd-story__tl-text {
  font-size: .82rem;
  color: var(--white-soft);
  line-height: 1.6;
}

.wbd-story__tl-item:last-child .wbd-story__tl-year,
.wbd-story__tl-item:last-child .wbd-story__tl-text {
  color: var(--white);
}

.wbd-story__tl-item:last-child .wbd-story__tl-dot {
  box-shadow: 0 0 0 3px rgba(255,107,0,.3), 0 0 12px rgba(255,107,0,.5);
  animation: pulse 2s ease infinite;
}

/* ============================================================
   ABOUT PAGE — NEW OUR VALUES (service-card style)
   ============================================================ */
.wbd-values-section {
  background: var(--surface);
  padding: 100px 6vw;
  position: relative;
  overflow: hidden;
}

.wbd-values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.wbd-values-section .section-label,
.wbd-values-section h2,
.wbd-values-section .section-intro {
  position: relative;
  z-index: 1;
}

.wbd-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.wbd-value-card-new {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: background .25s;
  cursor: none;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
}

.wbd-value-card-new::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--orange);
  transition: width .4s ease;
}

.wbd-value-card-new:hover {
  background: var(--surface-3);
}

.wbd-value-card-new:hover::before {
  width: 100%;
}

.wbd-value-card-new__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-dim);
  border: 1px solid var(--orange-glow);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.wbd-value-card-new__icon svg {
  width: 26px;
  height: 26px;
}

.wbd-value-card-new h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.35rem;
  letter-spacing: .06em;
  margin-bottom: .7rem;
}

.wbd-value-card-new p {
  font-size: .85rem;
  color: var(--white-soft);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.2rem;
}

.wbd-value-card-new .service-tags {
  margin-top: auto;
  margin-bottom: 0;
}
/* team Page */
/* ─── Section ───────────────────────────── */
.wbd-team-section {
  background: var(--surface);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.wbd-team-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 90%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.wbd-team-section::after {
  content: '';
  position: absolute;
  top: -8%; right: -4%;
  width: 48%; height: 65%;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,107,0,.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.wbd-team-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6vw;
}

/* ─── Header ────────────────────────────── */
.wbd-team-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.wbd-team-head .section-label { margin-bottom: .75rem; }

.wbd-team-head h2 {
  margin: .25rem 0 1rem;
  line-height: .95;
}

.wbd-team-head h2 em {
  color: var(--orange);
  font-style: normal;
}

.wbd-team-head .section-intro {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* ─── Tabs: horizontal scroll ───────────── */
.wbd-team-tabs-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.wbd-team-tabs-wrap::-webkit-scrollbar { display: none; }

.wbd-team-tabs {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: max-content;
  justify-content: center;
}

.wbd-team-tab {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white-soft);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  padding: .85rem 1.4rem;
  margin-bottom: -1px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: color .2s, border-color .2s;
  outline: none;
  flex-shrink: 0;
}

.wbd-team-tab:hover { color: var(--white); }

.wbd-team-tab.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.wbd-team-tab__count {
  font-size: .62rem;
  font-weight: 800;
  background: var(--orange-dim);
  color: var(--orange-bright);
  border: 1px solid var(--orange-glow);
  border-radius: 100px;
  padding: 1px 7px;
  min-width: 22px;
  text-align: center;
  transition: background .2s, color .2s, border-color .2s;
}

.wbd-team-tab.active .wbd-team-tab__count {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

/* ─── Grid ──────────────────────────────── */
.wbd-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─── Card ──────────────────────────────── */
.wbd-team-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: none;
  position: relative;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.wbd-team-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0;
  background: var(--orange);
  transition: width .4s ease;
  z-index: 2;
}

.wbd-team-card:hover {
  border-color: rgba(255,107,0,.35);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,.55), 0 0 28px rgba(255,107,0,.1);
}

.wbd-team-card:hover::before { width: 100%; }

.wbd-team-card.is-hidden { display: none; }

.wbd-team-card.entering {
  animation: cardEnter .38s cubic-bezier(.22,1,.36,1) both;
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ─── Card image ────────────────────────── */
.wbd-team-card__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #0d0d0d;
}

.wbd-team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.25,.46,.45,.94);
}

.wbd-team-card:hover .wbd-team-card__img-wrap img {
  transform: scale(1.05);
}

.wbd-team-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.45) 0%, transparent 55%);
  pointer-events: none;
}

/* ─── Card body ─────────────────────────── */
.wbd-team-card__body {
  padding: 1.5rem 1.5rem 1.8rem;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.wbd-team-card__dept {
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
}

.wbd-team-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
}

.wbd-team-card__role {
  font-size: .8rem;
  color: var(--white-soft);
  line-height: 1.55;
  font-weight: 500;
  padding-top: .1rem;
}

/* ─── Responsive ────────────────────────── */
@media (max-width: 1100px) {
  .wbd-team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .wbd-team-section { padding: 80px 0; }
  .wbd-team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .wbd-team-tabs { justify-content: flex-start; }
  .wbd-team-tab  { padding: .75rem 1.1rem; font-size: .72rem; }
}

@media (max-width: 480px) {
  .wbd-team-grid { grid-template-columns: 1fr; gap: 12px; }
  .wbd-team-tab  { padding: .7rem .9rem; font-size: .68rem; letter-spacing: .07em; }
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .wbd-story-section__inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .wbd-story__right {
    position: static;
  }

  .wbd-story__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .wbd-story__stat-divider {
    display: none;
  }

  .wbd-story__stat {
    border-bottom: 1px solid var(--border);
  }

  .wbd-story__stat:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .wbd-story__stat:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

@media (max-width: 1050px) {
  .wbd-platforms__layout { grid-template-columns: 1fr; }
  .wbd-services__grid { grid-template-columns: repeat(1, 1fr); }
  .wbd-service-card { border: 1px solid var(--border); }
}

@media (max-width: 1024px) {
  .wbd-contact-page__layout { grid-template-columns: 1fr; }
  .wbd-about__stats { grid-template-columns: repeat(2, 1fr); }
  .wbd-values__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .wbd-why__body { grid-template-columns: 1fr; }
  .wbd-why__tabs { border-right: none; border-bottom: 1px solid var(--border); }
  .wbd-why__panels { min-height: 280px; }
  .wbd-markets__cards { grid-template-columns: 1fr; }
  .hww-card { max-width: 340px; }
}

@media (max-width: 768px) {
  .wbd-page-hero { padding: 120px 6vw 60px; }
  .wbd-steps--page { grid-template-columns: 1fr; }
  .wbd-step--page { grid-template-columns: 1fr; }
  .wbd-steps--page::before { display: none; }
  .wbd-about__stats { grid-template-columns: repeat(2, 1fr); }
  .wbd-plat-cards { grid-template-columns: 1fr; }
  .wbd-hero__countries { gap: .4rem; }
  .country-chip { font-size: .72rem; padding: 4px 10px; }

  .hww-section { padding: 70px 0; }
  .hww-center-line { left: 20px; transform: none; }
  .hww-item {
    display: grid;
    grid-template-columns: 40px 1fr;
    min-height: auto;
    align-items: flex-start;
  }
  .hww-item.hww-reveal-init.hww-odd,
  .hww-item.hww-reveal-init.hww-even { opacity: 0; transform: translateX(-20px); }
  .hww-slot-left { display: none !important; }
  .hww-node-col { order: 1; padding: 20px 0 0; justify-content: flex-start; height: auto; }
  .hww-slot-right { order: 2; padding: 20px 0 20px 14px; justify-content: flex-start; }
  .hww-connector { display: none; }
  .hww-node { width: 42px; height: 42px; }
  .hww-node svg { width: 18px; height: 18px; }
  .hww-card { max-width: 100%; padding: 20px 18px; }
  .hww-card__title { font-size: 1.3rem; }
  .hww-card--mobile-only { display: block; }
}

@media (max-width: 640px) {
  .wbd-why { padding: 70px 5vw; }
  .wbd-why__tab { padding: 1.2rem 1.2rem; gap: .7rem; }
  .wbd-why__tab-num { font-size: 1.2rem; min-width: 1.6rem; }
  .wbd-why__tab-label { font-size: .74rem; line-height: 1.3; }
  .wbd-why__panels { min-height: 360px; }
  .wbd-why__panel { padding: 1.8rem 1.4rem 2.4rem; }
  .wbd-why__panel h3 { font-size: 1.4rem; }
  .wbd-why__panel p { font-size: .82rem; }
  .wbd-why__panel-icon { width: 42px; height: 42px; }
  .wbd-why__chip { font-size: .6rem; padding: 4px 9px; }

  .wbd-story-section { padding: 70px 5vw; }
  .wbd-story__stats { grid-template-columns: 1fr; }
  .wbd-story__stat:nth-child(odd) { border-right: none; }
  .wbd-story__stat:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .wbd-story__stat:last-child { border-bottom: none; }
  .wbd-story__stat-num { font-size: 2.4rem; }
  .wbd-story__tl-item { grid-template-columns: 2.8rem .8rem 1fr; gap: .5rem; }
  .wbd-story__tl-year { font-size: .95rem; }
  .wbd-values__grid { grid-template-columns: 1fr; }
  .wbd-values-section { padding: 70px 5vw; }
}

@media (max-width: 560px) {
  .wbd-hero__stats, .wbd-steps { grid-template-columns: repeat(1,1fr); }
  .wbd-services__header { flex-direction: column; align-items: flex-start; }
  .wbd-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .wbd-about__stats { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hww-head { margin-bottom: 48px; }
  .hww-card__desc { font-size: .82rem; }
  .wbd-story__quote { padding: 1.2rem 1.4rem; }
  .wbd-story__quote-mark { font-size: 3.5rem; }
}
