/* ============================================================
   WAFIDEEN THEME — MAIN CSS
   Premium Black & Gold Corporate WordPress Theme
   ============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ── */
:root {
  --gold:       #d4af37;
  --gold-l:     #f1d06b;
  --gold-d:     #a8891e;
  --gold-glow:  rgba(212,175,55,.22);
  --bg:         #050505;
  --bg-2:       #111111;
  --bg-card:    #0d0d0d;
  --txt:        #ffffff;
  --txt-2:      #d4d4d4;
  --txt-3:      #888888;
  --border:     rgba(212,175,55,.15);
  --border-2:   rgba(212,175,55,.38);
  --glass:      rgba(255,255,255,.03);
  --fh:         'Montserrat', sans-serif;
  --fb:         'Poppins', sans-serif;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  22px;
  --radius-xl:  32px;
  --trans:      all .32s cubic-bezier(.4,0,.2,1);
  --max-w:      1240px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { background: var(--bg); color: var(--txt); font-family: var(--fb); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
img   { max-width: 100%; display: block; }
input, textarea, select { font-family: inherit; background: none; border: none; outline: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-d); border-radius: 3px; }
::selection { background: rgba(212,175,55,.28); }

/* ── CONTAINER ── */
.wf-container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ============================================================
   GOLD SHINE ANIMATIONS
   ============================================================ */
@keyframes gold-shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes shimmer-bar {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}
@keyframes blink {
  0%, 100% { opacity: 1; } 50% { opacity: .28; }
}
@keyframes float-up {
  0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); }
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes hero-glow {
  0%, 100% { opacity: .6; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;  transform: translateX(-50%) scale(1.1); }
}
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── SHINE TEXT UTILITY ── */
.shine-text {
  background: linear-gradient(90deg,
    var(--gold-d) 0%, var(--gold) 20%, var(--gold-l) 38%,
    #fff8dc 50%, var(--gold-l) 62%, var(--gold) 80%, var(--gold-d) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 3.5s linear infinite;
}
.shine-text-slow {
  background: linear-gradient(90deg,
    var(--gold-d) 0%, var(--gold) 25%, var(--gold-l) 42%,
    #fff8dc 50%, var(--gold-l) 58%, var(--gold) 75%, var(--gold-d) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gold-shine 6s linear infinite;
}

/* ============================================================
   HEADER
   ============================================================ */
.wf-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 28px; transition: var(--trans);
}
.wf-header.scrolled {
  background: rgba(5,5,5,.93);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.55);
}
.wf-header__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}

/* LOGO */
.wf-logo { display: flex; align-items: center; gap: 11px; }
.wf-logo__mark {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-weight: 900; font-size: 1.1rem; color: #000;
  position: relative; overflow: hidden;
}
.wf-logo__mark::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: shimmer-bar 2.8s ease-in-out infinite;
}
.wf-logo__name { font-family: var(--fh); font-weight: 900; font-size: .95rem; letter-spacing: .08em; display: block; }
.wf-logo__tag  { font-size: .52rem; color: var(--gold); letter-spacing: .15em; text-transform: uppercase; font-weight: 600; display: block; }

/* NAV */
.wf-nav .menu, .wf-nav__list { display: flex; gap: 28px; list-style: none; }
.wf-nav .menu-item a, .wf-nav__link {
  font-size: .72rem; font-weight: 600; color: var(--txt-2);
  letter-spacing: .05em; text-transform: uppercase;
  position: relative; transition: color .25s;
}
.wf-nav .menu-item a::after, .wf-nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-l));
  transition: width .3s ease;
}
.wf-nav .menu-item a:hover, .wf-nav__link:hover { color: var(--gold); }
.wf-nav .menu-item a:hover::after, .wf-nav__link:hover::after { width: 100%; }

/* HEADER ACTIONS */
.wf-header__actions { display: flex; align-items: center; gap: 14px; }

/* HAMBURGER */
.wf-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.wf-hamburger span { display: block; width: 22px; height: 2px; background: var(--txt); border-radius: 2px; transition: var(--trans); }
.wf-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.wf-hamburger.active span:nth-child(2) { opacity: 0; }
.wf-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.wf-mobile-nav {
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(5,5,5,.97); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px; display: flex; flex-direction: column; gap: 20px;
  transform: translateY(-110%); opacity: 0;
  transition: all .38s cubic-bezier(.4,0,.2,1); z-index: 998;
}
.wf-mobile-nav.open { transform: translateY(0); opacity: 1; }
.wf-mobile-nav .menu, .wf-mobile-nav__list { display: flex; flex-direction: column; gap: 16px; list-style: none; }
.wf-mobile-nav .menu-item a {
  font-size: .9rem; font-weight: 600; color: var(--txt-2);
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
  display: block; transition: color .25s;
}
.wf-mobile-nav .menu-item a:hover { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.wf-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px; border-radius: var(--radius-sm);
  font-family: var(--fh); font-weight: 700; font-size: .76rem;
  letter-spacing: .055em; transition: var(--trans);
  position: relative; overflow: hidden; white-space: nowrap; cursor: pointer;
}
.wf-btn--primary {
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
  background-size: 200% auto; color: #000;
  animation: gold-shine 3.5s linear infinite;
}
.wf-btn--shimmer::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 38%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  animation: shimmer-bar 2.2s ease-in-out infinite;
}
.wf-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,175,55,.4); }
.wf-btn--outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--border-2);
}
.wf-btn--outline:hover { background: rgba(212,175,55,.08); border-color: var(--gold); transform: translateY(-2px); }
.wf-btn--ghost {
  background: rgba(255,255,255,.04); color: var(--txt-2);
  border: 1px solid var(--border);
}
.wf-btn--ghost:hover { background: rgba(255,255,255,.07); border-color: var(--border-2); }
.wf-btn--blue { background: linear-gradient(135deg, #4a9eff, #7bb8ff); color: #000; }
.wf-btn--blue:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(74,158,255,.35); }
.wf-btn--full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.wf-section { padding: 100px 0; position: relative; z-index: 1; }
.wf-section--alt { background: var(--bg-2); }

.wf-section__header { margin-bottom: 56px; }
.wf-section__header--center { text-align: center; }
.wf-section__header--center .gold-line { margin: 0 auto 18px; }
.wf-section__header--center .wf-section__subtitle { margin: 0 auto; }

/* Section tag */
.s-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.09); border: 1px solid var(--border);
  border-radius: 40px; padding: 5px 16px;
  font-size: .6rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; font-family: var(--fh);
  position: relative; overflow: hidden;
}
.s-tag::before {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.2), transparent);
  animation: shimmer-bar 3.5s ease-in-out infinite;
}
.s-tag-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 5px rgba(212,175,55,.6);
  animation: blink 2s infinite;
}

/* Gold line */
.gold-line {
  width: 52px; height: 3px; border-radius: 2px;
  margin-bottom: 18px; background: var(--gold-d);
  position: relative; overflow: hidden;
}
.gold-line::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold-l), transparent);
  animation: shimmer-bar 2s linear infinite;
}

.wf-section__title {
  font-family: var(--fh); font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -.022em;
  margin-bottom: 14px;
}
.wf-section__subtitle {
  font-size: .9rem; color: var(--txt-2); line-height: 1.82;
  max-width: 540px;
}
.wf-section__body {
  font-size: .9rem; color: var(--txt-2); line-height: 1.9;
  margin-bottom: 16px;
}

/* ============================================================
   TOAST
   ============================================================ */
.wf-toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--bg-2); border: 1px solid var(--gold);
  border-radius: var(--radius-md); padding: 14px 22px;
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 500;
  box-shadow: 0 12px 40px rgba(0,0,0,.6), 0 0 24px rgba(212,175,55,.14);
  transform: translateY(80px); opacity: 0;
  transition: all .4s cubic-bezier(.4,0,.2,1);
  max-width: 340px;
}
.wf-toast.show { transform: translateY(0); opacity: 1; }
.wf-toast svg { color: var(--gold); flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.wf-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 100px 0 80px;
}
.wf-hero__bg { position: absolute; inset: 0; z-index: 0; }
.wf-hero__gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(212,175,55,.12) 0%, transparent 70%),
    linear-gradient(180deg, #050505, #080808);
}
.wf-hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.03) 1px, transparent 1px);
  background-size: 52px 52px;
}
.wf-hero__glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 380px;
  background: radial-gradient(ellipse, rgba(212,175,55,.09) 0%, transparent 70%);
  filter: blur(40px);
  animation: hero-glow 4s ease-in-out infinite;
}
.wf-hero__content { position: relative; z-index: 2; }
.wf-hero__inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 72px; align-items: center;
}
.wf-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(212,175,55,.09); border: 1px solid var(--border);
  border-radius: 40px; padding: 6px 18px;
  font-size: .62rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; font-family: var(--fh);
  position: relative; overflow: hidden;
}
.wf-hero__eyebrow::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.2), transparent);
  animation: shimmer-bar 3s ease-in-out infinite;
}
.wf-hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 6px var(--gold);
  animation: blink 2s infinite;
}
.wf-hero__title {
  font-family: var(--fh); font-size: clamp(2.2rem, 4.2vw, 3.5rem);
  font-weight: 900; line-height: 1.07; letter-spacing: -.028em;
  margin-bottom: 22px;
}
.wf-hero__subtitle {
  font-size: .95rem; color: var(--txt-2); line-height: 1.88;
  margin-bottom: 36px; max-width: 500px;
}
.wf-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* STATS */
.wf-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wf-stat-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 24px 20px;
  transition: var(--trans); position: relative; overflow: hidden;
}
.wf-stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-l), var(--gold), transparent);
  background-size: 200% auto; animation: gold-shine 3s linear infinite;
  opacity: 0; transition: opacity .3s;
}
.wf-stat-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: 0 0 40px rgba(212,175,55,.1); }
.wf-stat-card:hover::before { opacity: 1; }
.wf-stat-card__icon {
  width: 34px; height: 34px; background: rgba(212,175,55,.1);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 14px;
}
.wf-stat-card__icon svg { width: 17px; height: 17px; }
.wf-stat-card__number {
  font-family: var(--fh); font-size: 2.1rem; font-weight: 900;
  line-height: 1; margin-bottom: 5px;
}
.wf-stat-card__label { font-size: .72rem; color: var(--txt-2); font-weight: 500; }

/* ============================================================
   TICKER
   ============================================================ */
.wf-ticker {
  background: var(--bg-2); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 22px 0; overflow: hidden;
}
.wf-ticker__label {
  text-align: center; font-size: .7rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--txt-3);
  font-family: var(--fh); font-weight: 600; margin-bottom: 18px;
}
.wf-ticker__wrap {
  position: relative; overflow: hidden;
}
.wf-ticker__wrap::before, .wf-ticker__wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
}
.wf-ticker__wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-2), transparent); }
.wf-ticker__wrap::after  { right: 0; background: linear-gradient(-90deg, var(--bg-2), transparent); }
.wf-ticker__track {
  display: flex; gap: 18px;
  animation: ticker-scroll 36s linear infinite;
  width: max-content;
}
.wf-ticker__chip {
  display: flex; align-items: center; gap: 9px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 40px; padding: 10px 20px; white-space: nowrap;
  position: relative; overflow: hidden;
}
.wf-ticker__chip::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.08), transparent);
  animation: shimmer-bar 5s ease-in-out infinite;
}
.wf-ticker__dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  flex-shrink: 0; box-shadow: 0 0 5px rgba(212,175,55,.5);
}
.wf-ticker__name { font-size: .74rem; font-weight: 500; color: var(--txt-2); font-family: var(--fh); }

/* ============================================================
   ABOUT
   ============================================================ */
.wf-about__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.wf-about__image-wrap { position: relative; }
.wf-about__image {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); overflow: hidden;
  transition: var(--trans);
}
.wf-about__image:hover { border-color: var(--border-2); box-shadow: 0 0 48px rgba(212,175,55,.09); }
.wf-about__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wf-about__image-placeholder {
  width: 100%; height: 100%; min-height: 280px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--txt-3); font-size: .8rem; text-align: center; padding: 24px;
  background: repeating-linear-gradient(45deg, rgba(212,175,55,.012) 0, rgba(212,175,55,.012) 1px, transparent 1px, transparent 18px);
}
.wf-about__image-placeholder svg { color: var(--gold); opacity: .4; width: 48px; height: 48px; }
.wf-about__badge {
  position: absolute; bottom: -14px; right: -14px;
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
  background-size: 200% auto; animation: gold-shine 3s linear infinite;
  border-radius: var(--radius-md); padding: 18px 22px; text-align: center;
  box-shadow: 0 8px 30px rgba(212,175,55,.35);
}
.wf-about__badge-num { font-family: var(--fh); font-size: 1.6rem; font-weight: 900; color: #1a1200; line-height: 1; }
.wf-about__badge-txt { font-size: .58rem; font-weight: 800; color: rgba(0,0,0,.65); letter-spacing: .08em; text-transform: uppercase; }

/* PILLARS */
.wf-pillars { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.wf-pillar {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 13px 16px; background: rgba(212,175,55,.04);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  transition: var(--trans); position: relative; overflow: hidden;
}
.wf-pillar::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.06), transparent);
  animation: shimmer-bar 6s ease-in-out infinite;
}
.wf-pillar:hover { border-color: var(--border-2); background: rgba(212,175,55,.07); }
.wf-pillar__icon {
  width: 38px; height: 38px; background: rgba(212,175,55,.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.wf-pillar__icon svg { width: 17px; height: 17px; }
.wf-pillar__title { font-family: var(--fh); font-size: .8rem; font-weight: 700; margin-bottom: 2px; }
.wf-pillar__text  { font-size: .72rem; color: var(--txt-3); }

/* ============================================================
   TEAM
   ============================================================ */
.wf-team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 26px; max-width: 820px; margin: 0 auto;
}
.wf-team-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--trans); position: relative;
}
.wf-team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-l), var(--gold), transparent);
  background-size: 200% auto; animation: gold-shine 3s linear infinite;
}
.wf-team-card--blue::before {
  background: linear-gradient(90deg, transparent, #4a9eff, #7bb8ff, #4a9eff, transparent);
  background-size: 200% auto;
}
.wf-team-card:hover {
  border-color: var(--border-2); transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(0,0,0,.5), 0 0 40px rgba(212,175,55,.08);
}
.wf-team-card__photo { width: 100%; height: 260px; background: #0a0a0a; position: relative; overflow: hidden; }
.wf-team-card__img   { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.wf-team-card__photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 9px; color: var(--txt-3); font-size: .76rem; font-weight: 500;
  background: repeating-linear-gradient(45deg, rgba(212,175,55,.012) 0, rgba(212,175,55,.012) 1px, transparent 1px, transparent 18px);
}
.wf-team-card__photo-placeholder svg { opacity: .38; }
.wf-team-card__badge {
  position: absolute; bottom: 10px; left: 10px; z-index: 2;
  padding: 4px 13px; border-radius: 20px;
  font-size: .6rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; font-family: var(--fh);
}
.wf-team-card__badge--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  background-size: 200% auto; animation: gold-shine 3s linear infinite; color: #000;
}
.wf-team-card__badge--blue { background: linear-gradient(135deg, #4a9eff, #7bb8ff); color: #000; }
.wf-team-card__info { padding: 24px 22px; }
.wf-team-card__name { font-family: var(--fh); font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.wf-team-card__role { font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 13px; font-family: var(--fh); }
.wf-team-card__role--blue { color: #4a9eff; }
.wf-team-card__bio { font-size: .79rem; color: var(--txt-2); line-height: 1.76; margin-bottom: 18px; }
.wf-team-card__socials { display: flex; gap: 8px; }
.wf-social-btn {
  width: 32px; height: 32px; background: var(--glass);
  border: 1px solid var(--border); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: var(--txt-3); transition: var(--trans);
}
.wf-social-btn:hover { background: rgba(212,175,55,.1); border-color: var(--border-2); color: var(--gold); }

/* ============================================================
   WHAT WE DO
   ============================================================ */
.wf-what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wf-what-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 34px 28px;
  transition: var(--trans); position: relative; overflow: hidden;
}
.wf-what-card__num {
  position: absolute; top: 16px; right: 22px;
  font-family: var(--fh); font-size: 3.2rem; font-weight: 900;
  color: rgba(212,175,55,.05); line-height: 1;
}
.wf-what-card:hover {
  border-color: var(--border-2); transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0,0,0,.45), 0 0 40px rgba(212,175,55,.07);
}
.wf-what-card__icon {
  width: 50px; height: 50px; background: rgba(212,175,55,.1);
  border: 1px solid var(--border); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 22px; transition: var(--trans);
}
.wf-what-card__icon svg { width: 22px; height: 22px; }
.wf-what-card:hover .wf-what-card__icon { background: rgba(212,175,55,.18); border-color: var(--border-2); box-shadow: 0 0 18px rgba(212,175,55,.2); }
.wf-what-card__title { font-family: var(--fh); font-size: 1rem; font-weight: 700; margin-bottom: 11px; }
.wf-what-card__text  { font-size: .82rem; color: var(--txt-2); line-height: 1.82; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.wf-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.wf-steps::before {
  content: ''; position: absolute; top: 44px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-2), var(--border-2), var(--border-2), transparent);
  z-index: 0;
}
.wf-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.wf-step__num-wrap { position: relative; margin-bottom: 26px; }
.wf-step__num {
  width: 90px; height: 90px; border-radius: 50%;
  background: var(--bg-2); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fh); font-size: 1.3rem; font-weight: 900;
  color: var(--txt-3); transition: var(--trans); position: relative;
}
.wf-step:hover .wf-step__num { border-color: var(--gold); box-shadow: 0 0 32px rgba(212,175,55,.2); }
.wf-step__n-txt { transition: opacity .25s; }
.wf-step__icon {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  color: var(--gold); opacity: 0; transition: opacity .25s;
}
.wf-step__icon svg { width: 26px; height: 26px; }
.wf-step:hover .wf-step__icon { opacity: 1; }
.wf-step:hover .wf-step__n-txt { opacity: 0; }
.wf-step__title { font-family: var(--fh); font-size: .88rem; font-weight: 700; margin-bottom: 9px; }
.wf-step__desc  { font-size: .76rem; color: var(--txt-2); line-height: 1.72; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.wf-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.wf-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; background: var(--glass);
  border: 1px solid var(--border); border-radius: 40px;
  font-size: .8rem; font-weight: 500; color: var(--txt-2);
  transition: var(--trans); cursor: default;
  position: relative; overflow: hidden;
}
.wf-chip::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.06), transparent);
  animation: shimmer-bar 7s ease-in-out infinite;
}
.wf-chip:hover { background: rgba(212,175,55,.07); border-color: var(--gold); color: var(--txt); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,175,55,.12); }

/* ============================================================
   CITIES
   ============================================================ */
.wf-cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.wf-city-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 38px 22px;
  text-align: center; transition: var(--trans); cursor: default;
  position: relative; overflow: hidden;
}
.wf-city-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-l), var(--gold), transparent);
  background-size: 200% auto; animation: gold-shine 3s linear infinite;
  opacity: 0; transition: opacity .3s;
}
.wf-city-card:hover { border-color: var(--border-2); transform: translateY(-8px); box-shadow: 0 20px 52px rgba(0,0,0,.45); }
.wf-city-card:hover::after { opacity: 1; }
.wf-city-card__emoji { font-size: 2.2rem; margin-bottom: 17px; display: block; animation: float-up 3s ease-in-out infinite; }
.wf-city-card:nth-child(2) .wf-city-card__emoji { animation-delay: .5s; }
.wf-city-card:nth-child(3) .wf-city-card__emoji { animation-delay: 1s; }
.wf-city-card:nth-child(4) .wf-city-card__emoji { animation-delay: 1.5s; }
.wf-city-card__name { font-family: var(--fh); font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.wf-city-card__tag  { font-size: .64rem; color: var(--gold); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

/* ============================================================
   NETWORK
   ============================================================ */
.wf-network-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.wf-net-panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 42px 34px;
  position: relative; overflow: hidden;
}
.wf-net-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-l), var(--gold), transparent);
  background-size: 200% auto; animation: gold-shine 3s linear infinite;
}
.wf-net-panel--blue::before {
  background: linear-gradient(90deg, transparent, #4a9eff, #7bb8ff, #4a9eff, transparent);
  background-size: 200% auto;
}
.wf-net-panel__icon {
  width: 48px; height: 48px; background: rgba(212,175,55,.1);
  border: 1px solid var(--border); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 18px;
}
.wf-net-panel__icon svg { width: 22px; height: 22px; }
.wf-net-panel__icon--blue { background: rgba(74,158,255,.1); border-color: rgba(74,158,255,.2); color: #4a9eff; }
.wf-net-panel__title { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.wf-net-panel__desc  { font-size: .78rem; color: var(--txt-3); margin-bottom: 24px; }
.wf-net-items { display: flex; flex-direction: column; gap: 10px; }
.wf-net-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(212,175,55,.07);
  border-radius: var(--radius-sm); padding: 12px 15px; transition: var(--trans);
  position: relative; overflow: hidden;
}
.wf-net-item::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.05), transparent);
  animation: shimmer-bar 8s ease-in-out infinite;
}
.wf-net-item:hover { background: rgba(212,175,55,.05); border-color: var(--border); }
.wf-net-item--blue { border-color: rgba(74,158,255,.08); }
.wf-net-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-l));
  flex-shrink: 0; box-shadow: 0 0 5px rgba(212,175,55,.4);
}
.wf-net-dot--blue { background: linear-gradient(135deg, #4a9eff, #7bb8ff); box-shadow: 0 0 5px rgba(74,158,255,.4); }
.wf-net-item span:last-child { font-size: .78rem; font-weight: 500; color: var(--txt-2); line-height: 1.4; }
.wf-net-panel__cta {
  margin-top: 22px; padding: 18px; text-align: center;
  background: rgba(74,158,255,.04); border: 1px dashed rgba(74,158,255,.2);
  border-radius: 10px;
}
.wf-net-panel__cta p { font-size: .74rem; color: var(--txt-3); margin-bottom: 12px; }

/* ============================================================
   WHY CHOOSE
   ============================================================ */
.wf-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wf-why-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: var(--trans); position: relative; overflow: hidden;
}
.wf-why-card::after {
  content: ''; position: absolute; top: 0; left: -60%; width: 35%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.04), transparent);
  animation: shimmer-bar 9s ease-in-out infinite;
}
.wf-why-card:hover { border-color: var(--border-2); transform: translateY(-5px); box-shadow: 0 16px 44px rgba(0,0,0,.4); }
.wf-why-card__icon {
  width: 46px; height: 46px; background: rgba(212,175,55,.1);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 16px; transition: var(--trans);
}
.wf-why-card__icon svg { width: 20px; height: 20px; }
.wf-why-card:hover .wf-why-card__icon { background: rgba(212,175,55,.18); box-shadow: 0 0 18px rgba(212,175,55,.2); }
.wf-why-card__title { font-family: var(--fh); font-size: .88rem; font-weight: 700; margin-bottom: 9px; }
.wf-why-card__text  { font-size: .78rem; color: var(--txt-2); line-height: 1.78; }

/* ============================================================
   CONTACT FORMS
   ============================================================ */
.wf-forms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.wf-form-panel {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 38px 30px;
  position: relative; overflow: hidden;
}
.wf-form-panel::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
}
.wf-form-panel--gold::before {
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-l), var(--gold), transparent);
  background-size: 200% auto; animation: gold-shine 3s linear infinite;
}
.wf-form-panel--blue::before {
  background: linear-gradient(90deg, transparent, #4a9eff, #7bb8ff, #4a9eff, transparent);
  background-size: 200% auto; animation: gold-shine 4s linear infinite;
}
.wf-form-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 13px; border-radius: 20px;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 13px; font-family: var(--fh);
}
.wf-form-badge--gold { background: rgba(212,175,55,.1); color: var(--gold); }
.wf-form-badge--blue { background: rgba(74,158,255,.1); color: #4a9eff; }
.wf-form-panel__title { font-family: var(--fh); font-size: 1.2rem; font-weight: 800; margin-bottom: 6px; }
.wf-form-panel__sub   { font-size: .78rem; color: var(--txt-3); margin-bottom: 26px; }
.wf-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wf-form__group { display: flex; flex-direction: column; gap: 6px; }
.wf-form__group--full { grid-column: 1 / -1; }
.wf-form__group label {
  font-size: .6rem; font-weight: 700; color: var(--txt-2);
  letter-spacing: .08em; text-transform: uppercase; font-family: var(--fh);
}
.wf-form__group input,
.wf-form__group select,
.wf-form__group textarea {
  width: 100%; background: rgba(255,255,255,.03);
  border: 1px solid rgba(212,175,55,.12); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: .8rem; color: var(--txt);
  font-family: var(--fb); transition: var(--trans);
  -webkit-appearance: none; appearance: none;
}
.wf-form__group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23d4af37' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.wf-form__group select option { background: #111; color: #fff; }
.wf-form__group textarea { resize: vertical; min-height: 88px; }
.wf-form__group input::placeholder,
.wf-form__group textarea::placeholder { color: var(--txt-3); }
.wf-form__group input:focus,
.wf-form__group select:focus,
.wf-form__group textarea:focus {
  border-color: var(--gold); background: rgba(212,175,55,.04);
  outline: none; box-shadow: 0 0 0 3px rgba(212,175,55,.08);
}

/* ============================================================
   CTA
   ============================================================ */
.wf-cta {
  background: linear-gradient(135deg, #0d0d0d, #111);
  border: 1px solid rgba(212,175,55,.2); border-radius: var(--radius-xl);
  padding: 80px 56px; text-align: center; position: relative; overflow: hidden;
}
.wf-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-l), var(--gold), transparent);
  background-size: 200% auto; animation: gold-shine 3s linear infinite;
}
.wf-cta__glow {
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,175,55,.1) 0%, transparent 70%);
  pointer-events: none;
}
.wf-cta .s-tag { margin-bottom: 20px; }
.wf-cta__title {
  font-family: var(--fh); font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.15; letter-spacing: -.02em;
  margin-bottom: 18px; position: relative; z-index: 1;
}
.wf-cta__text {
  font-size: .9rem; color: var(--txt-2); line-height: 1.82;
  max-width: 520px; margin: 0 auto 36px; position: relative; z-index: 1;
}
.wf-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   FOOTER
   ============================================================ */
.wf-footer { background: #020202; border-top: 1px solid var(--border); padding: 72px 0 36px; position: relative; z-index: 1; }
.wf-footer__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.wf-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 52px; }
.wf-footer__brand .wf-logo { margin-bottom: 16px; }
.wf-footer__about { font-size: .78rem; color: var(--txt-3); line-height: 1.82; max-width: 270px; margin-bottom: 22px; }
.wf-footer__socials { display: flex; gap: 9px; }
.wf-footer__col-title { font-family: var(--fh); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.wf-footer__links { display: flex; flex-direction: column; gap: 11px; }
.wf-footer__links a, .wf-footer__links li {
  font-size: .78rem; color: var(--txt-3); transition: color .22s;
  display: flex; align-items: center; gap: 6px; cursor: pointer;
}
.wf-footer__links a::before, .wf-footer__links li::before { content: '›'; color: var(--gold); opacity: .5; }
.wf-footer__links a:hover, .wf-footer__links li:hover { color: var(--txt); }
.wf-footer__contact { display: flex; flex-direction: column; gap: 13px; }
.wf-footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .78rem; color: var(--txt-3); line-height: 1.5; }
.wf-footer__contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.wf-footer__contact-item a:hover { color: var(--gold); }
.wf-footer__bottom {
  border-top: 1px solid var(--border); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.wf-footer__copy { font-size: .72rem; color: var(--txt-3); }
.wf-footer__legal { display: flex; gap: 22px; }
.wf-footer__legal a, .wf-footer__legal-links li, .wf-footer__legal-links a { font-size: .72rem; color: var(--txt-3); transition: color .22s; cursor: pointer; }
.wf-footer__legal a:hover { color: var(--gold); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.wf-reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.wf-reveal.wf-visible { opacity: 1; transform: translateY(0); }
.wf-reveal-delay-1 { transition-delay: .1s; }
.wf-reveal-delay-2 { transition-delay: .2s; }
.wf-reveal-delay-3 { transition-delay: .3s; }
.wf-reveal-delay-4 { transition-delay: .4s; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1100px) {
  .wf-hero__inner       { grid-template-columns: 1fr; gap: 56px; }
  .wf-stats-grid        { max-width: 460px; }
  .wf-what-grid         { grid-template-columns: 1fr 1fr; }
  .wf-steps             { grid-template-columns: repeat(2,1fr); gap: 40px; }
  .wf-steps::before     { display: none; }
  .wf-cities-grid       { grid-template-columns: repeat(2,1fr); }
  .wf-footer__grid      { grid-template-columns: 1fr 1fr; }
  .wf-about__inner      { grid-template-columns: 1fr; gap: 56px; }
  .wf-team-grid         { max-width: 100%; }
}

/* ── MOBILE ── */
@media (max-width: 768px) {
  .wf-nav, .wf-header__actions .wf-btn:not(.wf-hamburger) { display: none; }
  .wf-hamburger { display: flex; }

  .wf-hero { padding: 110px 0 72px; }
  .wf-hero__title { font-size: 2rem; }
  .wf-hero__inner { grid-template-columns: 1fr; }
  .wf-stats-grid  { grid-template-columns: 1fr 1fr; }
  .wf-hero__actions { flex-direction: column; }
  .wf-hero__actions .wf-btn { width: 100%; justify-content: center; }

  .wf-what-grid   { grid-template-columns: 1fr; }
  .wf-steps       { grid-template-columns: 1fr; gap: 32px; }
  .wf-cities-grid { grid-template-columns: 1fr 1fr; }
  .wf-network-grid{ grid-template-columns: 1fr; }
  .wf-why-grid    { grid-template-columns: 1fr; }
  .wf-forms-grid  { grid-template-columns: 1fr; }
  .wf-form__grid  { grid-template-columns: 1fr; }
  .wf-team-grid   { grid-template-columns: 1fr; }
  .wf-footer__grid{ grid-template-columns: 1fr; gap: 32px; }
  .wf-footer__bottom { flex-direction: column; text-align: center; }
  .wf-cta { padding: 52px 24px; }
  .wf-cta__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .wf-cities-grid { grid-template-columns: 1fr 1fr; }
  .wf-form-panel  { padding: 28px 18px; }
  .wf-net-panel   { padding: 30px 22px; }
  .wf-stats-grid  { grid-template-columns: 1fr 1fr; }
}
