.nav-menu {
  font-family: "Inter", sans-serif;
}

body{
  font-family: "Inter", sans-serif;
}

/* ─── WORK HERO ─── */
.work-hero {
  position: relative;
  background: #080808;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 80px; /* nav height */
}

/* Grid bg */
.wh-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(101, 234, 44, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 234, 44, 0.025) 1px, transparent 1px);
  background-size: 68px 68px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse 90% 80% at 60% 40%,
    black 20%,
    transparent 80%
  );
}

/* Orbs */
.wh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.wh-orb-tl {
  width: 560px;
  height: 450px;
  background: radial-gradient(
    circle,
    rgba(101, 234, 44, 0.08),
    transparent 70%
  );
  top: -100px;
  left: -150px;
  animation: whOrbMove 9s ease-in-out infinite alternate;
}
.wh-orb-br {
  width: 400px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(101, 234, 44, 0.05),
    transparent 70%
  );
  bottom: 60px;
  right: 0;
  animation: whOrbMove 12s ease-in-out infinite alternate-reverse;
}
@keyframes whOrbMove {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(30px, 25px);
  }
}

/* Scanlines */
.wh-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.08) 3px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
  opacity: 0.3;
}

/* Floating bg numbers */
.wh-float-nums {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.wfn {
  position: absolute;
  left: var(--x);
  top: var(--y);
  font-family: "Syne", sans-serif;
  font-size: var(--s);
  font-weight: 800;
  color: rgba(101, 234, 44, 0.03);
  letter-spacing: -4px;
  animation: wfnFloat 6s var(--d) ease-in-out infinite alternate;
  user-select: none;
}
@keyframes wfnFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-20px);
  }
}

/* ── TICKER TAPE ── */
.wh-ticker {
  width: 100%;
  overflow: hidden;
  padding: 11px 0;
  background: rgba(255, 255, 255, 0.015);
  flex-shrink: 0;
  position: relative;
  top: -9px;
}
.wh-ticker-bottom {
  margin-top: auto;
  position: relative;
  bottom: 1px;
}
.wh-ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  font-family: "DM Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}
.wh-ticker-rev {
  animation: tickerScrollRev 22s linear infinite;
}

#wh-ticker-bottom-r{
  position: relative;
  top: 0.1px;
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes tickerScrollRev {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
.wh-tick-dot {
  color: #65ea2c;
  font-size: 9px;
}

/* ── INNER LAYOUT ── */
.wh-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 64px 48px;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── LEFT ── */
.wh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(101, 234, 44, 0.07);
  border: 0.5px solid rgba(101, 234, 44, 0.22);
  color: #65ea2c;
  font-family: "DM Sans", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.6px;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  animation: wh-fadeUp 0.6s ease both;
}
.wh-badge-dot {
  width: 7px;
  height: 7px;
  background: #65ea2c;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(101, 234, 44, 0.7);
  animation: whDotPulse 2s infinite;
}
@keyframes whDotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.wh-title {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 22px;
  animation: wh-fadeUp 0.7s 0.08s ease both;
}
.wh-title-outline {
  -webkit-text-stroke: 2px #65ea2c;
  color: transparent;
}
.wh-title-dot {
  color: #65ea2c;
}

.wh-sub {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 36px;
  animation: wh-fadeUp 0.7s 0.16s ease both;
}

.wh-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  animation: wh-fadeUp 0.7s 0.24s ease both;
}
.wh-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #65ea2c;
  color: #080808;
  /* font-family: "DM Sans", sans-serif; */
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(101, 234, 44, 0.25);
}
.wh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(101, 234, 44, 0.4);
}
.wh-btn-ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  transition:
    border-color 0.2s,
    color 0.2s;
}
.wh-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

/* Industry tags */
.wh-industries {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  animation: wh-fadeUp 0.7s 0.32s ease both;
}
.wh-ind-label {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.5px;
  margin-right: 2px;
}
.wh-ind-tag {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 100px;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.35);
}
.wh-ind-tag.lit {
  border-color: rgba(101, 234, 44, 0.3);
  color: #65ea2c;
  background: rgba(101, 234, 44, 0.07);
}

/* ── RIGHT — STAT CARDS ── */
.wh-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: wh-fadeUp 0.7s 0.18s ease both;
}

.wh-stat-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.wh-stat-card:hover {
  border-color: rgba(101, 234, 44, 0.28);
  transform: translateY(-3px);
}
.wh-stat-card:hover .wh-sc-glow {
  opacity: 1;
}
.wh-sc-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 80px;
  background: radial-gradient(
    circle,
    rgba(101, 234, 44, 0.15),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

/* Main big card */
.wh-sc-main {
  padding: 24px 24px 0;
}
.wh-sc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.wh-sc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(101, 234, 44, 0.07);
  border: 0.5px solid rgba(101, 234, 44, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wh-sc-change {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  background: rgba(101, 234, 44, 0.1);
  color: #65ea2c;
  padding: 3px 10px;
  border-radius: 100px;
  border: 0.5px solid rgba(101, 234, 44, 0.2);
}
.wh-sc-num {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: 47px;
  letter-spacing: -3px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.wh-sc-num span {
  font-size: 28px;
  color: #65ea2c;
}
.accent-num {
  color: #65ea2c;
}
.wh-sc-label {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Sparkline */
.wh-sparkline {
  width: 100%;
  height: 52px;
}
.wh-sparkline svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Small cards row */
.wh-sc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.wh-sc-sm {
  padding: 18px 18px 16px;
}
.featured-sm {
  background: rgba(101, 234, 44, 0.04);
  border-color: rgba(101, 234, 44, 0.15);
}
.sm-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  margin-bottom: 12px;
}
.sm-num {
  font-size: 36px;
  letter-spacing: -2px;
}

/* Bar inside sm card */
.wh-sc-bar-wrap {
  margin-top: 10px;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  overflow: hidden;
}
.wh-sc-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(101, 234, 44, 0.4), #65ea2c);
  border-radius: 100px;
  transition: width 1.2s ease 0.6s;
}
.wh-sc-bar.animated {
  width: var(--bw);
}

/* Dots inside featured sm card */
.wh-sc-dots {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
.wh-sc-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #65ea2c;
  box-shadow: 0 0 6px rgba(101, 234, 44, 0.5);
}
.wh-sc-dots i.dim {
  background: rgba(101, 234, 44, 0.2);
  box-shadow: none;
}

/* Latest project card */
.wh-latest-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.025);
  border-radius: 12px;
  padding: 14px 18px;
  transition: border-color 0.2s;
}
.wh-latest-card:hover {
  border-color: rgba(101, 234, 44, 0.2);
}
.wh-latest-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wh-latest-thumb {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(101, 234, 44, 0.07);
  border: 0.5px solid rgba(101, 234, 44, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wh-latest-name {
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 3px;
}
.wh-latest-cat {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}
.wh-latest-roas {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
.wh-latest-roas span {
  font-family: "DM Sans", sans-serif;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.5px;
}
.wh-latest-roas strong {
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #65ea2c;
  letter-spacing: -0.5px;
}

/* Animation */
@keyframes wh-fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .wh-inner {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 48px;
  }
  .wh-right {
    max-width: 480px;
  }
  .wh-title {
    font-size: clamp(40px, 10vw, 60px);
  }
}
@media (max-width: 520px) {
  .wh-sc-row {
    grid-template-columns: 1fr;
  }
  .wh-actions {
    flex-direction: column;
  }
  .wh-btn-primary,
  .wh-btn-ghost {
    justify-content: center;
  }
}

/* =============================================
   PORTFOLIO SECTION — AdMediaX
   Theme: Editorial Dark / Sharp Modern
   ============================================= */

:root {
  --bg-base: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #161616;
  --border: rgba(255, 255, 255, 0.07);
  --border-hover: rgba(57, 255, 20, 0.35);
  --accent: #39e75f;
  --accent-dim: rgba(57, 231, 95, 0.12);
  --text-primary: #f0f0f0;
  --text-secondary: #888;
  --text-tag: #39e75f;
  --radius-card: 16px;
  --radius-img: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-base);
  font-family: "DM Sans", sans-serif;
  color: var(--text-primary);
}

/* ── Section ── */
.portfolio {
  padding: 90px 0 100px;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.portfolio::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(57, 231, 95, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Title ── */
.section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 64px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ── Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Last card spanning full first column row if odd */
.portfolio-card:last-child:nth-child(3n + 1) {
  grid-column: span 1;
}

/* ── Card ── */
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  position: relative;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  opacity: 0;
  background: linear-gradient(
    135deg,
    rgba(57, 231, 95, 0.04) 0%,
    transparent 60%
  );
  transition: opacity var(--transition);
  pointer-events: none;
  z-index: 0;
}

.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(57, 231, 95, 0.1),
    0 20px 60px rgba(57, 231, 95, 0.06);
  background: var(--bg-card-hover);
}

.portfolio-card:hover::before {
  opacity: 1;
}

/* ── Image Wrapper ── */
.portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-img) var(--radius-img) 0 0;
  flex-shrink: 0;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.4s ease;
  filter: brightness(0.88) saturate(0.9);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.06);
  filter: brightness(0.5) saturate(0.6);
}

/* ── Overlay ── */
.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* ── Overlay Button ── */
.portfolio-btn {
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  transform: translateY(10px) scale(0.95);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.portfolio-card:hover .portfolio-btn {
  transform: translateY(0) scale(1);
  box-shadow: 0 6px 24px rgba(57, 231, 95, 0.35);
}

.portfolio-btn:hover {
  box-shadow: 0 8px 30px rgba(57, 231, 95, 0.55) !important;
}

.work-btn {
  display: block;
  padding: 11px 26px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0a;
  text-decoration: none;
  white-space: nowrap;
}

/* ── Content ── */
.portfolio-content {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  position: relative;
  z-index: 1;
}

.portfolio-content h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1.2;
}

.portfolio-content p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ── Tags ── */
.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.tag {
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-tag);
  letter-spacing: 0.01em;
  opacity: 0.75;
  transition:
    opacity 0.2s ease,
    color 0.2s ease;
}

.portfolio-card:hover .tag {
  opacity: 1;
}

.tag:hover {
  color: #7fff9a;
  opacity: 1;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

/* CTA section */

/* ===== CTA WORK SECTION ===== */
.cta-work {
  padding: 100px 20px;
  background: #050505;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

/* container */
.cta-work-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  position: relative;
}

/* glow */
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(62, 102, 54, 0.15), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(120px);
  z-index: 0;
}

/* content */
.cta-content {
  position: relative;
  z-index: 1;
}

/* title */
.cta-content h2 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 15px;
}

/* text */
.cta-content p {
  color: #aaa;
  max-width: 600px;
  margin: 0 auto 25px;
}

/* button */
.cta-main-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: linear-gradient(90deg, #39ff14, #a8ff78);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

/* hover */
.cta-main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(55, 207, 28, 0.4);
}

/* mobile */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.6rem;
  }
}
