/* ===== RESET & BASE ===== */






body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s;
}
.cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(200,240,96,0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease-out, width 0.2s, height 0.2s, border-color 0.2s;
}

a, button { cursor: none; }

/* ===== TYPOGRAPHY ===== */
.font-display { font-family: 'Bebas Neue', sans-serif; }

/* ===== NAV ===== */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(8,8,8,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
nav.main-nav.scrolled { padding: 14px 48px; }
.nav-logo-wrap { display: flex; justify-content: center; }
.nav-right { display: flex; align-items: center; justify-content: flex-end; }

.nav-menu-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
}
.nav-menu-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--off-white);
  text-transform: lowercase;
}
.nav-hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nav-hamburger-lines span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--off-white);
}

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

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--off-white); }

.nav-cta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: var(--black) !important;
  background: var(--accent);
  padding: 10px 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--off-white);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu button { cursor: pointer !important; pointer-events: all !important; }
.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.05em;
  color: var(--off-white);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }

@media (max-width: 900px) {
  nav.main-nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-hamburger { display: flex; }
}

/* Nav phone always visible, logo always centred */
.nav-phone-mobile {
  display: flex !important;
}

@media (max-width: 900px) {
  nav.main-nav {
    padding: 16px 20px;
  }
}
.nav-links { display: none; }
.nav-cta-desktop { display: none; }
.nav-hamburger { display: none; }

.nav-phone-mobile {
  display: flex;
  color: var(--off-white);
  text-decoration: none;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.nav-phone-mobile:hover { opacity: 0.7; }
.nav-phone-mobile svg { 
  width: 16px; height: 16px; 
  fill: var(--accent);
  flex-shrink: 0;
}
.nav-phone-number {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
}

/* On mobile: show green circle icon only, hide number */
@media (max-width: 900px) {
  .nav-phone-mobile {
    width: 42px; height: 42px;
    background: var(--accent);
    border-radius: 50%;
    justify-content: center;
  }
  .nav-phone-mobile svg { fill: var(--black); }
  .nav-phone-number { display: none; }
}

/* ===== HERO — KING KONG STYLE ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 14vw, 190px);
  line-height: 0.85;
  letter-spacing: 0.01em;
  color: var(--off-white);
  margin-bottom: 20px;
}

.hero-title .outline-text {
  -webkit-text-stroke: 2px rgba(240,237,230,0.5);
  color: transparent;
}

.hero-title .accent-text { color: var(--accent); }

.hero-sub {
  font-size: 17px;
  color: rgba(240,237,230,0.55);
  max-width: 620px;
  margin: 0 auto 28px;
  font-weight: 300;
  line-height: 1.65;
}

/* King Kong email input row */
.hero-input-row {
  display: flex;
  align-items: center;
  max-width: 580px;
  margin: 0 auto 18px;
  background: var(--off-white);
  border-radius: 60px;
  overflow: hidden;
  padding: 6px 6px 6px 20px;
  gap: 0;
}

.hero-input-emoji {
  font-size: 20px;
  margin-right: 10px;
  flex-shrink: 0;
  line-height: 1;
}

.hero-input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #111;
  padding: 10px 0;
  min-width: 0;
}

.hero-input-row input::placeholder {
  color: rgba(0,0,0,0.35);
}

.hero-input-btn {
  background: var(--accent);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 0.12em;
  border: none;
  border-radius: 50px;
  padding: 14px 28px;
  cursor: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  flex-shrink: 0;
}
.hero-input-btn:hover { opacity: 0.85; }
.hero-input-btn .btn-arrow {
  font-size: 18px;
  line-height: 1;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-proof-item {
  font-size: 12px;
  color: rgba(240,237,230,0.4);
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-proof-stars {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
}

.hero-proof-divider {
  width: 1px;
  height: 14px;
  background: rgba(240,237,230,0.15);
}

.hero-cta-wrap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Mobile label above input */
.hero-input-label {
  display: none;
  font-size: 13px;
  color: rgba(240,237,230,1);
  margin-bottom: 10px;
  text-align: center;
  letter-spacing: 0.02em;
}

/* Success message */
.hero-success {
  display: none;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-top: 8px;
  text-align: center;
}

@media (max-width: 600px) {
  .hero {
    padding: 140px 16px 24px;
    min-height: unset;
  }

  .hero-title {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 0.88;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 14px;
    margin-bottom: 22px;
  }
  .hero-input-label { display: block; }
  .hero-input-row {
    flex-direction: row;
    border-radius: 60px;
    padding: 5px 5px 5px 16px;
    gap: 0;
    background: var(--off-white);
    border: none;
  }
  .hero-input-emoji { display: none; }
  .hero-input-row input {
    color: #111;
    width: 100%;
    text-align: left;
    padding: 8px 0;
    font-size: 13px;
  }
  .hero-input-row input::placeholder { color: rgba(0,0,0,0.35); }
  .hero-input-btn { width: auto; justify-content: center; border-radius: 50px; font-size: 13px; padding: 12px 18px; }
  .hero-social-proof {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
  }
  .hero-proof-divider { display: none; }
  .hero-proof-item { font-size: 11px; }
}

.btn-primary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--black);
  background: var(--accent);
  padding: 16px 40px;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  color: var(--off-white);
  background: transparent;
  border: 1px solid rgba(240,237,230,0.2);
  padding: 16px 40px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* Spinning Logo Placeholder */
.spinning-logo-wrap {
  margin: 80px auto 0;
  position: relative;
  z-index: 2;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinning-logo-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,240,96,0.15);
  border-radius: 50%;
  animation: spinRing 12s linear infinite;
}
.spinning-logo-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.spinning-logo-inner {
  width: 160px; height: 160px;
  border: 1px solid rgba(200,240,96,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinRingReverse 8s linear infinite;
  position: relative;
}
.spinning-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: spinRingReverse 8s linear infinite;
  filter: brightness(0) invert(1);
}
.spinning-logo-placeholder {
  width: 100px; height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-align: center;
  border: 1px dashed rgba(200,240,96,0.3);
  padding: 12px;
  animation: spinRingReverse 8s linear infinite;
}

@keyframes spinRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinRingReverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

/* Mini spinning logo for pricing card */
.pricing-spin-logo {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.psl-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,240,96,0.35);
  border-radius: 50%;
  animation: spinRing 8s linear infinite;
}
.psl-ring::before {
  content: '';
  position: absolute;
  top: -3px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
}
.psl-inner {
  width: 38px; height: 38px;
  border: 1px solid rgba(200,240,96,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spinRingReverse 5s linear infinite;
}
.psl-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 8px;
  letter-spacing: 0.15em;
  color: var(--accent);
  animation: spinRingReverse 5s linear infinite;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(200,240,96,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.scroll-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dim);
  writing-mode: vertical-rl;
  margin-top: 8px;
}

/* ===== MARQUEE ===== */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: rgba(240,237,230,0.2);
  padding: 0 40px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-item::after {
  content: '✦';
  color: var(--accent);
  font-size: 10px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SERVICES ===== */
.services-section {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.9;
  color: var(--off-white);
  margin-bottom: 64px;
}
.section-title .dim { color: rgba(240,237,230,0.2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
}

.service-card {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-dim);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover .svc-num { color: var(--accent); }
.service-card:hover .svc-arrow { opacity: 1; transform: translate(0,0); }

.service-card.featured { background: rgba(200,240,96,0.04); }
.service-card.featured .svc-title { color: var(--accent); }

.svc-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(240,237,230,0.15);
  margin-bottom: 32px;
  display: block;
  transition: color 0.25s;
}

.svc-icon {
  width: 36px; height: 36px;
  margin-bottom: 20px;
}

.svc-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.03em;
  color: var(--off-white);
  margin-bottom: 12px;
  line-height: 1;
  position: relative;
}

.svc-desc {
  font-size: 13px;
  color: var(--dim);
  line-height: 1.65;
  font-weight: 300;
  position: relative;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  position: relative;
}

.svc-tag {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.3);
  border: 1px solid rgba(240,237,230,0.1);
  padding: 4px 10px;
}

.svc-arrow {
  position: absolute;
  top: 40px; right: 36px;
  font-size: 20px;
  color: var(--accent);
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: all 0.25s;
}

.services-footer {
  border: 1px solid var(--border);
  border-top: none;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.services-footer-text {
  font-size: 13px;
  color: var(--dim);
  font-weight: 300;
}
.services-footer-text strong { color: var(--off-white); font-weight: 400; }

@media (max-width: 900px) {
  .services-section { padding: 80px 24px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .service-card:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .service-card:last-child { border-bottom: none !important; }
  .services-footer { flex-direction: column; align-items: flex-start; }
}

/* ===== WHAT WE BUILD (showcase) ===== */
.showcase-section {
  padding: 0 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.showcase-list {
  display: flex;
  flex-direction: column;
}

.showcase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  gap: 24px;
  transition: padding 0.2s;
  position: relative;
}
.showcase-row:first-child { border-top: 1px solid var(--border); }

.showcase-row:hover .showcase-num { color: var(--accent); }
.showcase-row:hover .showcase-line { width: 60px; background: var(--accent); }

.showcase-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: rgba(240,237,230,0.2);
  min-width: 36px;
  transition: color 0.2s;
}

.showcase-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  letter-spacing: 0.03em;
  color: var(--off-white);
  flex: 1;
}

.showcase-line {
  width: 40px; height: 1px;
  background: var(--border);
  transition: width 0.3s, background 0.3s;
}

.showcase-detail {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  text-align: right;
  min-width: 160px;
}

@media (max-width: 640px) {
  .showcase-section { padding: 0 24px 80px; }
  .showcase-detail { display: none; }
}

/* ===== PORTFOLIO ===== */
.portfolio-section {
  padding: 0 0 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.portfolio-section-header {
  padding: 0 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

.portfolio-card {
  background: var(--black);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.portfolio-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.4s, transform 0.6s;
}
.portfolio-card:hover img { opacity: 1; transform: scale(1.04); }
.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9) 0%, transparent 60%);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.portfolio-cat {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.portfolio-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--off-white);
}

/* placeholder card */
.portfolio-card.placeholder {
  background: rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder-inner {
  text-align: center;
}
.placeholder-inner span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.15);
  margin-top: 10px;
}

@media (max-width: 768px) {
  .portfolio-section { padding: 0 24px 80px; }
  #portfolio { padding-top: 40px; }
  .portfolio-section-header { padding: 0; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 0 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Packages row — 3 cols */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

/* Add-ons row — 3 cols, accent bordered */
.pricing-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(200,240,96,0.2);
  border: 1px solid rgba(200,240,96,0.2);
  margin-top: 48px;
}

.pricing-addon-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-top: 48px;
  margin-bottom: 12px;
}

.pricing-card.addon {
  background: #0c0c0c;
  border: none;
}
.pricing-card.addon:hover { background: #101010; }
.pricing-card.addon .pricing-label { color: var(--accent); }

@media (max-width: 900px) {
  .pricing-addons { grid-template-columns: 1fr; }
}

.pricing-card {
  background: #0a0a0a;
  padding: 48px 36px;
  position: relative;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover { background: #0e0e0e; }
.pricing-card.featured { background: rgba(200,240,96,0.05); }

.pricing-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px;
  display: block;
}
.pricing-card.featured .pricing-label { color: var(--accent); }

.pricing-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.pricing-card.featured .pricing-amount { color: var(--accent); }

.pricing-period {
  font-size: 12px;
  color: var(--dim);
  margin-bottom: 32px;
  display: block;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 28px;
}

.pricing-feature {
  font-size: 13px;
  color: rgba(240,237,230,0.55);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.pricing-feature::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.pricing-cta {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 14px;
  text-decoration: none;
  color: var(--black);
  background: var(--accent);
  transition: opacity 0.2s;
}
.pricing-cta:hover { opacity: 0.85; }

.pricing-cta-outline {
  color: var(--off-white);
  background: transparent;
  border: 1px solid var(--border);
}
.pricing-cta-outline:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 900px) {
  .pricing-section { padding: 0 24px 80px; }
  #services .pricing-section > div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid-bottom { grid-template-columns: 1fr; }
}

/* ===== INFLUENCER SECTION ===== */
.influencer-section {
  padding: 0 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

.influencer-card {
  border: 1px solid rgba(200,240,96,0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(200,240,96,0.03);
}

.influencer-card-left {
  padding: 56px 48px;
  border-right: 1px solid rgba(200,240,96,0.12);
}

.influencer-card-right {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.influencer-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 4px;
}

.influencer-period {
  font-size: 12px;
  color: var(--dim);
  display: block;
  margin-bottom: 24px;
}

.influencer-desc {
  font-size: 14px;
  color: rgba(240,237,230,0.5);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 380px;
}

.influencer-feature {
  font-size: 13px;
  color: rgba(240,237,230,0.55);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
}
.influencer-feature:first-child { border-top: 1px solid var(--border); }
.influencer-feature::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .influencer-section { padding: 0 24px 80px; }
  .influencer-card { grid-template-columns: 1fr; }
  .influencer-card-left { border-right: none; border-bottom: 1px solid rgba(200,240,96,0.12); padding: 40px 24px; }
  .influencer-card-right { padding: 40px 24px; }
}

/* ===== ADD-ONS POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
}

.popup-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9001;
  width: 90%;
  max-width: 780px;
  background: #0e0e0e;
  border: 1px solid rgba(200,240,96,0.25);
  padding: 56px 48px 40px;
  animation: popupIn 0.35s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes popupIn {
  from { opacity: 0; transform: translate(-50%, -46%); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.popup-close {
  position: absolute;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--off-white);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  transition: border-color 0.2s;
}
.popup-close:hover { border-color: var(--accent); color: var(--accent); }

.popup-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.popup-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 0.02em;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 8px;
}

.popup-sub {
  font-size: 13px;
  color: var(--dim);
  font-weight: 300;
  margin-bottom: 36px;
}

.popup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(200,240,96,0.15);
  border: 1px solid rgba(200,240,96,0.15);
  margin-bottom: 24px;
}

.popup-card {
  background: #0a0a0a;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.popup-card-featured {
  background: rgba(200,240,96,0.04);
}

.popup-card-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 16px;
  display: block;
}
.popup-card-featured .popup-card-label { color: var(--accent); }

.popup-card-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 4px;
}
.popup-card-featured .popup-card-amount { color: var(--accent); }

.popup-card-period {
  font-size: 11px;
  color: var(--dim);
  display: block;
  margin-bottom: 20px;
}

.popup-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.popup-feature {
  font-size: 12px;
  color: rgba(240,237,230,0.5);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 300;
  flex: 0 0 auto;
}
.popup-feature::before {
  content: '';
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.popup-cta {
  margin-top: auto;
  padding-top: 20px;
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  color: var(--black);
  background: var(--accent);
  transition: opacity 0.2s;
  margin-top: auto;
}
.popup-cta:hover { opacity: 0.85; }
.popup-cta-outline {
  color: var(--off-white);
  background: transparent;
  border: 1px solid var(--border);
}
.popup-cta-outline:hover { border-color: var(--accent); color: var(--accent); }

.popup-skip {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--dim);
  cursor: none;
  text-transform: uppercase;
  transition: color 0.2s;
}
.popup-skip:hover { color: var(--off-white); }

@media (max-width: 600px) {
  .popup-modal {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    max-height: calc(100vh - 32px);
    top: 50%;
    left: 50%;
    bottom: auto;
    right: auto;
    transform: translate(-50%, -50%);
    border-radius: 12px;
    padding: 40px 16px 16px;
    overflow-y: auto;
    animation: popupInMobile 0.35s cubic-bezier(0.22,1,0.36,1) both;
  }
  .popup-title { font-size: 26px !important; }
  .popup-sub { font-size: 12px !important; margin-bottom: 0 !important; }
  .popup-eyebrow { margin-bottom: 4px !important; }
  @keyframes popupInMobile {
    from { opacity: 0; transform: translate(-50%, -46%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
  }
  .popup-grid { grid-template-columns: 1fr; }
  .popup-title { font-size: 32px; }
  .popup-close {
    top: 14px;
    right: 16px;
    width: 32px;
    height: 32px;
    font-size: 13px;
  }
  .popup-card { padding: 24px 20px; }
  .popup-card-amount { font-size: 42px; }
}

/* Unused old addon classes cleanup */
.pricing-addons, .pricing-addon-label, .pricing-section-label,
.pricing-retainer-wrap, .pricing-alacarte { display: none; }
.testimonials-section {
  padding: 0 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.testi-card {
  background: #0a0a0a;
  padding: 36px;
}

.testi-quote {
  font-size: 13px;
  color: rgba(240,237,230,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 300;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(200,240,96,0.1);
  border: 1px solid rgba(200,240,96,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  color: var(--off-white);
  font-weight: 400;
}
.testi-handle {
  font-size: 11px;
  color: var(--dim);
}

@media (max-width: 900px) {
  .testimonials-section { padding: 0 24px 80px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ===== CTA BANNER ===== */
.cta-banner {
  margin: 0 48px 120px;
  max-width: calc(1200px - 96px);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--border);
  padding: 80px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,240,96,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.9;
  color: var(--off-white);
  margin-bottom: 24px;
  position: relative;
}
.cta-banner-sub {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 40px;
  font-weight: 300;
  position: relative;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  .cta-banner { margin: 0 24px 80px; padding: 60px 32px; }
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 48px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1) opacity(0.5); }

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--off-white); }

.footer-copy {
  font-size: 11px;
  color: rgba(240,237,230,0.2);
  letter-spacing: 0.08em;
}

@media (max-width: 768px) {
  footer { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 20px; flex-wrap: wrap; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Instagram (keep from original) */
.floating-instagram {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #111;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
}
.floating-instagram:hover {
  transform: translateY(-3px);
  border-color: rgba(200,240,96,0.4);
}
.floating-instagram svg { width: 22px; height: 22px; fill: var(--off-white); }


  /* All grids share same wrapper — no side padding, full width within max-width */
  .pf-filter-wrap {
    display: flex;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-bottom: 1px;
    overflow-x: auto;
  }
  .pf-filter-btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 0.16em;
    color: rgba(240,237,230,0.3);
    background: #0a0a0a;
    border: none;
    padding: 16px 32px;
    cursor: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    flex: 1;
  }
  .pf-filter-btn:hover { color: var(--off-white); background: #111; }
  .pf-filter-btn.active { color: var(--black); background: var(--accent); }

  .pf-tab { display: none; }
  .pf-tab.active { display: block; }

  /* Shared grid — all tabs use this same grid wrapper */
  .pf-reel-grid,
  .pf-brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-top: none;
    width: 100%;
    box-sizing: border-box;
  }

  /* Ecommerce + Websites: vertical 9/16 cards */
  .pf-reel-card {
    background: #0a0a0a;
    aspect-ratio: 9/16;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-width: 0;
  }
  .pf-reel-card video,
  .pf-reel-card img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s;
  }
  .pf-reel-card:hover video,
  .pf-reel-card:hover img { opacity: 1; }

  /* Branding: square cards */
  .pf-brand-card {
    background: #0a0a0a;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    min-width: 0;
  }
  .pf-brand-card img,
  .pf-brand-card video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s;
  }
  .pf-brand-card:hover img,
  .pf-brand-card:hover video { opacity: 1; }

  /* Shared overlay */
  .pf-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,8,8,0.88) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 20px 24px;
    z-index: 10;
  }
  .pf-cat {
    font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 3px;
  }
  .pf-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px; letter-spacing: 0.04em; color: var(--off-white);
  }

  .mute-btn {
    position: absolute; top: 10px; right: 10px; z-index: 20;
    background: rgba(0,0,0,0.55); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%; width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    cursor: none;
  }

  .carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 20; width: 30px; height: 30px; border-radius: 50%;
    background: rgba(0,0,0,0.6); border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    cursor: none;
  }
  .carousel-arrow.left { left: 8px; }
  .carousel-arrow.right { right: 8px; }

  @media (max-width: 768px) {
    .pf-reel-grid, .pf-brand-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 480px) {
    .pf-reel-grid, .pf-brand-grid { grid-template-columns: 1fr; }
    .pf-filter-btn { padding: 14px 20px; font-size: 12px; }
  }