/* ================================================================
   WebNexis Modern UI — AI Development Company Component Styles
   ================================================================ */

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  --wn-dark:     #080c1a;
  --wn-dark-2:   #0d1321;
  --wn-surface:  #f8fafc;
  --wn-radius:   16px;
  --wn-tr:       .25s ease;
}

/* ── Section Header ─────────────────────────────────────────────── */
.wn-section-header            { margin-bottom: 56px; }
.wn-section-header.center     { text-align: center; }
.wn-section-header.center .wn-section-sub { margin-left: auto; margin-right: auto; }

.wn-section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--wn-brand, #e84d1c); margin-bottom: 14px;
}
.wn-section-tag::before {
  content: ''; display: inline-block;
  width: 24px; height: 2px;
  background: var(--wn-brand, #e84d1c); border-radius: 1px;
}

.wn-section-title {
  font-size: clamp(28px, 4vw, 48px); font-weight: 900;
  color: #0f172a; line-height: 1.12; letter-spacing: -.5px; margin-bottom: 16px;
}
.wn-section-title em { font-style: normal; color: var(--wn-brand, #e84d1c); }

.wn-section-sub {
  font-size: 16px; color: #64748b; line-height: 1.72;
  max-width: 560px; margin-bottom: 0;
}

.wn-dark .wn-section-title { color: #fff; }
.wn-dark .wn-section-sub   { color: rgba(255,255,255,.6); }

/* ── Shared Buttons ─────────────────────────────────────────────── */
.wn-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; font-size: 14px; font-weight: 700;
  border-radius: var(--wn-btn-radius, 8px);
  text-decoration: none; cursor: pointer;
  transition: all var(--wn-tr); border: 2px solid transparent; white-space: nowrap;
}
.wn-btn-primary {
  background: var(--wn-brand, #e84d1c); color: var(--wn-btn-text, #fff) !important;
  border-color: var(--wn-brand, #e84d1c); box-shadow: 0 4px 20px rgba(232,77,28,.28);
}
.wn-btn-primary:hover {
  background: var(--wn-brand-hover, #c43a0d); border-color: var(--wn-brand-hover, #c43a0d);
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,77,28,.4);
  color: var(--wn-btn-text, #fff) !important;
}
.wn-btn-ghost {
  background: transparent; color: #0f172a !important; border-color: #e2e8f0;
}
.wn-btn-ghost:hover { border-color: var(--wn-brand,#e84d1c); color: var(--wn-brand,#e84d1c) !important; }

.wn-btn-ghost-light {
  background: rgba(255,255,255,.08); color: #fff !important;
  border-color: rgba(255,255,255,.2); backdrop-filter: blur(6px);
}
.wn-btn-ghost-light:hover { background: rgba(255,255,255,.16); color: #fff !important; border-color: rgba(255,255,255,.4); }

.wn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--wn-brand,#e84d1c); text-decoration: none;
  transition: gap var(--wn-tr);
}
.wn-link:hover { gap: 10px; color: var(--wn-brand,#e84d1c); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--wn-dark, #080c1a);
  overflow: hidden; padding: 140px 0 90px;
}
.wn-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 80% at 5% 50%,  rgba(232,77,28,.13) 0%, transparent 55%),
    radial-gradient(ellipse 45% 70% at 92% 20%,  rgba(99,102,241,.1)  0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 75% 85%,  rgba(14,165,233,.07) 0%, transparent 60%);
}
.wn-hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
  mask-image:         radial-gradient(ellipse 80% 80% at 50% 50%, #000 30%, transparent 100%);
}

.wn-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px; padding: 7px 18px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.8);
  letter-spacing: .4px; margin-bottom: 24px; backdrop-filter: blur(8px);
}
.wn-badge-dot {
  display: inline-block; width: 7px; height: 7px;
  border-radius: 50%; background: #10b981;
  animation: wnPulseGreen 2s ease-in-out infinite;
}
@keyframes wnPulseGreen {
  0%,100% { box-shadow: 0 0 0 2px rgba(16,185,129,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.wn-hero-title {
  font-size: clamp(36px, 5.5vw, 68px); font-weight: 900; color: #fff;
  line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 22px;
}
.wn-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--wn-brand,#e84d1c) 0%, #ff8c5a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.wn-hero-desc {
  font-size: 17px; color: rgba(255,255,255,.6);
  line-height: 1.75; max-width: 540px; margin-bottom: 28px;
}
.wn-hero-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.wn-hero-stack span {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; padding: 5px 12px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.6);
  font-family: 'Courier New', monospace;
}
.wn-hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Code visual panel */
.wn-hero-visual { position: relative; padding: 0 0 0 24px; }

.wn-hv-main {
  background: rgba(10,14,30,.96); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.05);
}
.wn-hv-header {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 18px; background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.wn-hv-dot { width: 11px; height: 11px; border-radius: 50%; }
.wn-hv-dot.red    { background: #ff5f57; }
.wn-hv-dot.yellow { background: #febc2e; }
.wn-hv-dot.green  { background: #28c840; }
.wn-hv-filename {
  margin-left: 8px; font-size: 12px; color: rgba(255,255,255,.35);
  font-family: 'Courier New', monospace;
}
.wn-hv-code {
  padding: 22px 24px;
  font-family: 'Courier New', monospace; font-size: 13.5px; line-height: 2;
}
.wn-code-line { white-space: pre; color: rgba(255,255,255,.7); min-height: 1.5em; }
.cc-kw  { color: #818cf8; }
.cc-fn  { color: #34d399; }
.cc-str { color: #fbbf24; }
.cc-num { color: #fb923c; }
.cc-cm  { color: rgba(255,255,255,.28); font-style: italic; }
.cc-cls { color: #38bdf8; }
.cc-var { color: #e879f9; }

/* Floating info cards */
.wn-hv-float {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(10,14,30,.94); border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px; padding: 14px 18px;
  backdrop-filter: blur(16px); box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.wn-hv-f1 { top: -18px; right: -10px; animation: wnFloat 4s ease-in-out infinite; }
.wn-hv-f2 { bottom: 0px; right: -14px; animation: wnFloat 4s ease-in-out infinite; animation-delay: 2s; }
.wn-hv-float .wn-hfi { font-size: 22px; flex-shrink: 0; }
.wn-hv-float strong { display: block; font-size: 13px; color: #fff; font-weight: 700; line-height: 1.2; }
.wn-hv-float span   { display: block; font-size: 11px; color: rgba(255,255,255,.45); margin-top: 2px; }

@keyframes wnFloat {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-8px); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FEATURES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-features { padding: 80px 0; background: #fff; }
.wn-feature-card {
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: var(--wn-radius); padding: 34px 30px;
  height: 100%; transition: all var(--wn-tr); position: relative; overflow: hidden;
}
.wn-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--wn-brand,#e84d1c), #ff8c5a);
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.wn-feature-card:hover { border-color: transparent; box-shadow: 0 20px 56px rgba(15,23,42,.1); transform: translateY(-4px); }
.wn-feature-card:hover::before { transform: scaleX(1); }

.wn-fc-icon {
  width: 58px; height: 58px; background: rgba(232,77,28,.08);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 26px; color: var(--wn-brand,#e84d1c);
  transition: all var(--wn-tr);
}
.wn-feature-card:hover .wn-fc-icon { background: var(--wn-brand,#e84d1c); color: #fff; transform: scale(1.1); }
.wn-feature-card h4 { font-size: 19px; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.wn-feature-card p  { font-size: 14.5px; color: #64748b; line-height: 1.75; margin-bottom: 22px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-services { padding: 100px 0; background: #f8fafc; }
.wn-service-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: var(--wn-radius); padding: 32px 28px;
  height: 100%; transition: all var(--wn-tr); position: relative; overflow: hidden;
}
.wn-service-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--wn-brand,#e84d1c);
  transform: scaleY(0); transform-origin: top; transition: transform .35s ease;
}
.wn-service-card:hover { box-shadow: 0 24px 60px rgba(15,23,42,.1); transform: translateY(-3px); border-color: transparent; }
.wn-service-card:hover::after { transform: scaleY(1); }

.wn-svc-num {
  font-size: 54px; font-weight: 900;
  color: rgba(15,23,42,.05); line-height: 1;
  margin-bottom: 8px; font-family: 'Syne', sans-serif;
}
.wn-svc-icon {
  width: 50px; height: 50px; background: rgba(232,77,28,.08);
  border-radius: 13px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px; color: var(--wn-brand,#e84d1c);
  transition: all var(--wn-tr);
}
.wn-svc-icon img { width: 28px; height: 28px; object-fit: contain; }
.wn-service-card:hover .wn-svc-icon { background: var(--wn-brand,#e84d1c); color: #fff; }
.wn-service-card:hover .wn-svc-icon img { filter: brightness(0) invert(1); }
.wn-service-card h4 { font-size: 17px; font-weight: 800; color: #0f172a; margin-bottom: 10px; }
.wn-service-card p  { font-size: 14px; color: #64748b; line-height: 1.72; margin-bottom: 20px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-about { padding: 100px 0; background: #fff; }
.wn-about-visual { position: relative; }

.wn-about-img-wrap {
  border-radius: 22px; overflow: hidden;
  box-shadow: 0 28px 72px rgba(15,23,42,.14); position: relative;
}
.wn-about-img-wrap img { width: 100%; display: block; }
.wn-about-img-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8,12,26,.35) 100%);
}

.wn-about-exp {
  position: absolute; bottom: -24px; right: 24px;
  background: var(--wn-brand,#e84d1c); border-radius: 18px;
  padding: 22px 28px; text-align: center;
  box-shadow: 0 20px 48px rgba(232,77,28,.4);
}
.wn-about-exp-num   { display: block; font-size: 44px; font-weight: 900; color: #fff; line-height: 1; }
.wn-about-exp-label { display: block; font-size: 12px; color: rgba(255,255,255,.85); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .6px; }

.wn-about-metric {
  position: absolute; top: 28px; left: -24px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 16px 44px rgba(15,23,42,.16);
  display: flex; align-items: center; gap: 12px;
}
.wn-about-metric i { font-size: 22px; color: var(--wn-brand,#e84d1c); }
.wn-about-metric strong { display: block; font-size: 22px; font-weight: 900; color: #0f172a; line-height: 1; }
.wn-about-metric span   { display: block; font-size: 11px; color: #64748b; font-weight: 600; }

.wn-about-content { padding-left: 32px; }
.wn-about-content p { font-size: 15.5px; color: #475569; line-height: 1.8; margin-bottom: 28px; }

.wn-about-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 34px; }
.wn-about-feat {
  display: flex; align-items: center; gap: 10px;
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 10px; padding: 12px 14px;
  font-size: 13.5px; font-weight: 600; color: #0f172a;
  transition: all var(--wn-tr);
}
.wn-about-feat:hover { border-color: var(--wn-brand,#e84d1c); background: rgba(232,77,28,.04); }
.wn-about-feat i { color: var(--wn-brand,#e84d1c); font-size: 17px; flex-shrink: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STATS / COUNTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-stats {
  padding: 80px 0; background: var(--wn-dark,#080c1a);
  position: relative; overflow: hidden;
}
.wn-stats-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 100% at 0% 50%,   rgba(232,77,28,.09) 0%, transparent 55%),
    radial-gradient(ellipse 40%  80% at 100% 50%,  rgba(99,102,241,.07) 0%, transparent 55%);
}
.wn-stats-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.wn-stat-box {
  text-align: center; padding: 36px 20px;
  border-right: 1px solid rgba(255,255,255,.07); position: relative; z-index: 1;
}
.wn-stat-box:last-child { border-right: none; }
.wn-stat-num {
  font-size: clamp(44px, 5vw, 64px); font-weight: 900;
  color: #fff; line-height: 1; margin-bottom: 10px; display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.wn-stat-num .wn-stat-suffix { color: var(--wn-brand,#e84d1c); font-size: .75em; }
.wn-stat-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .7px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PROCESS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-process { padding: 100px 0; background: #f8fafc; }
.wn-process-grid { position: relative; }
.wn-process-connector {
  position: absolute; top: 30px; left: calc(16.66% + 30px); right: calc(16.66% + 30px);
  height: 2px; background: linear-gradient(90deg, transparent, #e2e8f0 15%, #e2e8f0 85%, transparent);
  z-index: 0;
}
@media(max-width:991px){ .wn-process-connector { display: none; } }

.wn-process-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: var(--wn-radius); padding: 34px 28px;
  position: relative; z-index: 1; height: 100%;
  transition: all var(--wn-tr);
}
.wn-process-card:hover { box-shadow: 0 20px 56px rgba(15,23,42,.09); transform: translateY(-3px); border-color: rgba(232,77,28,.2); }

.wn-proc-num {
  width: 60px; height: 60px; background: var(--wn-brand,#e84d1c);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; color: #fff;
  margin-bottom: 22px; box-shadow: 0 10px 28px rgba(232,77,28,.3);
  position: relative;
}
.wn-proc-num::after {
  content: ''; position: absolute; inset: -5px;
  border-radius: 50%; border: 2px dashed rgba(232,77,28,.25);
  animation: wnProcSpin 12s linear infinite;
}
@keyframes wnProcSpin { to { transform: rotate(360deg); } }

.wn-process-card h4 { font-size: 19px; font-weight: 800; color: #0f172a; margin-bottom: 12px; }
.wn-process-card p  { font-size: 14.5px; color: #64748b; line-height: 1.75; margin: 0; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-testimonials { padding: 100px 0; background: #fff; }
.wn-testi-card {
  background: #f8fafc; border: 1px solid #e8edf5;
  border-radius: var(--wn-radius); padding: 34px 30px;
  height: 100%; transition: all var(--wn-tr); position: relative;
}
.wn-testi-card::before {
  content: '\201C'; position: absolute; top: 18px; right: 24px;
  font-size: 90px; line-height: 1; color: rgba(232,77,28,.07);
  font-family: Georgia, serif; font-weight: 900;
}
.wn-testi-card:hover { border-color: rgba(232,77,28,.2); box-shadow: 0 20px 56px rgba(15,23,42,.08); transform: translateY(-3px); }

.wn-testi-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.wn-testi-stars i { font-size: 14px; color: #f59e0b; }
.wn-testi-text {
  font-size: 15px; color: #334155; line-height: 1.82;
  margin-bottom: 26px; font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden;
}

.wn-testi-author { display: flex; align-items: center; gap: 12px; }
.wn-testi-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--wn-brand,#e84d1c);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.wn-testi-name { font-size: 15px; font-weight: 800; color: #0f172a; line-height: 1.2; }
.wn-testi-role { font-size: 12px; color: #94a3b8; font-weight: 500; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG PREVIEW
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-blog-preview { padding: 100px 0; background: #f8fafc; }
.wn-blog-card {
  background: #fff; border: 1px solid #e8edf5;
  border-radius: var(--wn-radius); overflow: hidden;
  height: 100%; transition: all var(--wn-tr);
  display: flex; flex-direction: column;
}
.wn-blog-card:hover { box-shadow: 0 24px 64px rgba(15,23,42,.1); transform: translateY(-4px); border-color: transparent; }

.wn-blog-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}
.wn-blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.wn-blog-card:hover .wn-blog-thumb img { transform: scale(1.06); }

.wn-blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--wn-brand,#e84d1c); color: #fff;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  padding: 4px 10px; border-radius: 6px;
}

.wn-blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.wn-blog-meta {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  font-size: 12px; color: #94a3b8; margin-bottom: 12px;
}
.wn-blog-meta span { display: flex; align-items: center; gap: 5px; }
.wn-blog-meta i { font-size: 11px; }

.wn-blog-title {
  font-size: 17px; font-weight: 800; color: #0f172a; line-height: 1.45;
  margin-bottom: 10px; text-decoration: none; display: block;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
a.wn-blog-title:hover { color: var(--wn-brand,#e84d1c); }

.wn-blog-excerpt {
  font-size: 14px; color: #64748b; line-height: 1.72; flex: 1; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.wn-blog-footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #f1f5f9; padding-top: 16px; margin-top: auto;
}
.wn-blog-author { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: #475569; }
.wn-blog-ava { width: 28px; height: 28px; border-radius: 50%; background: #e2e8f0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: #64748b; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA / SUBSCRIBE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-cta {
  padding: 110px 0; background: var(--wn-dark,#080c1a);
  position: relative; overflow: hidden;
}
.wn-cta-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 65% 120% at 50% 50%, rgba(232,77,28,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40%  70% at 10% 80%, rgba(99,102,241,.07) 0%, transparent 60%);
}
.wn-cta-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.wn-cta-inner { text-align: center; position: relative; z-index: 1; }
.wn-cta-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,77,28,.12); border: 1px solid rgba(232,77,28,.25);
  border-radius: 24px; padding: 6px 18px;
  font-size: 11px; font-weight: 700; color: var(--wn-brand,#e84d1c);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 22px;
}
.wn-cta-inner h2 {
  font-size: clamp(28px, 4vw, 54px); font-weight: 900; color: #fff;
  line-height: 1.12; letter-spacing: -.5px; margin-bottom: 18px;
}
.wn-cta-inner h2 em { font-style: normal; color: var(--wn-brand,#e84d1c); }
.wn-cta-inner p { font-size: 17px; color: rgba(255,255,255,.55); max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
.wn-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-footer {
  background: #05080f; padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.wn-footer-logo { display: block; margin-bottom: 18px; }
.wn-footer-logo img { max-height: 38px; width: auto; }
.wn-footer-desc {
  font-size: 14px; color: rgba(255,255,255,.45);
  line-height: 1.78; margin-bottom: 22px; max-width: 270px;
}
.wn-footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 0; }
.wn-footer-social a {
  width: 36px; height: 36px; border-radius: 9px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: 14px; text-decoration: none;
  transition: all var(--wn-tr);
}
.wn-footer-social a:hover { background: var(--wn-brand,#e84d1c); border-color: var(--wn-brand,#e84d1c); color: #fff; }

.wn-footer-heading {
  font-size: 13px; font-weight: 800; color: rgba(255,255,255,.9);
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.wn-footer-links { list-style: none; padding: 0; margin: 0; }
.wn-footer-links li { margin-bottom: 11px; }
.wn-footer-links a {
  font-size: 14px; color: rgba(255,255,255,.45); text-decoration: none;
  display: flex; align-items: center; gap: 6px; transition: all var(--wn-tr);
}
.wn-footer-links a i { font-size: 12px; color: var(--wn-brand,#e84d1c); opacity: 0; transform: translateX(-4px); transition: all var(--wn-tr); }
.wn-footer-links a:hover { color: #fff; transform: translateX(4px); }
.wn-footer-links a:hover i { opacity: 1; transform: translateX(0); }

.wn-footer-nl-desc { font-size: 13.5px; color: rgba(255,255,255,.45); line-height: 1.72; margin-bottom: 16px; }
.wn-footer-form { display: flex; gap: 0; }
.wn-footer-form input {
  flex: 1; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-right: none; border-radius: 8px 0 0 8px; padding: 11px 14px;
  font-size: 13px; color: #fff; outline: none; transition: border .2s;
}
.wn-footer-form input::placeholder { color: rgba(255,255,255,.25); }
.wn-footer-form input:focus { border-color: var(--wn-brand,#e84d1c); }
.wn-footer-form button {
  background: var(--wn-brand,#e84d1c); color: #fff; border: none;
  border-radius: 0 8px 8px 0; padding: 11px 18px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: background var(--wn-tr); white-space: nowrap;
}
.wn-footer-form button:hover { background: var(--wn-brand-hover,#c43a0d); }

.wn-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05); padding: 22px 0; margin-top: 64px;
}
.wn-footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.wn-footer-legal { display: flex; gap: 20px; justify-content: flex-end; flex-wrap: wrap; }
.wn-footer-legal a { font-size: 13px; color: rgba(255,255,255,.3); text-decoration: none; transition: color var(--wn-tr); }
.wn-footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MODERN TEAM CARDS
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wn-team { padding: 100px 0; background: #fff; }
.wn-team-card {
  background: #f8fafc; border: 1px solid #e8edf5;
  border-radius: var(--wn-radius); overflow: hidden;
  transition: all var(--wn-tr); text-align: center;
}
.wn-team-card:hover { box-shadow: 0 20px 56px rgba(15,23,42,.1); transform: translateY(-4px); border-color: transparent; }
.wn-team-photo {
  position: relative; overflow: hidden;
  aspect-ratio: 1; background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}
.wn-team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.wn-team-card:hover .wn-team-photo img { transform: scale(1.06); }
.wn-team-photo-placeholder {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  display: flex; align-items: center; justify-content: center;
}
.wn-team-photo-placeholder i { font-size: 64px; color: #cbd5e1; }
.wn-team-socials {
  position: absolute; inset: 0;
  background: rgba(8,12,26,.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity var(--wn-tr);
}
.wn-team-card:hover .wn-team-socials { opacity: 1; }
.wn-team-socials a {
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; text-decoration: none;
  transition: all var(--wn-tr);
}
.wn-team-socials a:hover { background: var(--wn-brand,#e84d1c); border-color: var(--wn-brand,#e84d1c); }

.wn-team-info { padding: 20px 16px 22px; }
.wn-team-name { font-size: 17px; font-weight: 800; color: #0f172a; margin-bottom: 4px; }
.wn-team-role { font-size: 13px; color: #94a3b8; font-weight: 500; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media(max-width:991px) {
  .wn-hero { padding: 130px 0 70px; min-height: auto; }
  .wn-hero-visual { padding: 40px 0 0; }
  .wn-hv-f1, .wn-hv-f2 { display: none; }
  .wn-about-content { padding-left: 0; margin-top: 56px; }
  .wn-about-metric { display: none; }
  .wn-about-exp { bottom: -16px; right: 10px; }
  .wn-stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .wn-stat-box:last-child { border-bottom: none; }
}
@media(max-width:767px) {
  .wn-hero { padding: 120px 0 60px; }
  .wn-hero-title { letter-spacing: -.5px; }
  .wn-hero-desc { font-size: 15px; }
  .wn-about-feats { grid-template-columns: 1fr; }
  .wn-section-header { margin-bottom: 40px; }
  .wn-features,.wn-services,.wn-about,.wn-process,.wn-testimonials,.wn-blog-preview,.wn-team { padding: 70px 0; }
  .wn-stats,.wn-cta { padding: 60px 0; }
  .wn-footer { padding: 56px 0 0; }
  .wn-footer-legal { justify-content: flex-start; margin-top: 8px; }
  .wn-footer-bottom .row { flex-direction: column; gap: 8px; }
}
@media(max-width:480px) {
  .wn-hero-badge { font-size: 11px; }
  .wn-cta-actions { flex-direction: column; align-items: center; }
  .wn-btn { width: 100%; justify-content: center; }
  .wn-about-exp { padding: 16px 20px; }
  .wn-about-exp-num { font-size: 34px; }
}
