/* ═══════════════════════════════════════
   YOUSEF.DEV — SHARED STYLESHEET
═══════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #050505;
  color: #f5f5f5;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  #cursor,
  #cursor-ring {
    display: none !important;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ── CURSOR ── */
#cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: #d4a843;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;

}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 168, 67, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);

}





/* ── NOISE ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── AMBIENT ORBS ── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: -1;
}

.orb-1 {
  width: 480px;
  height: 480px;
  background: #d4a843;
  top: -120px;
  right: -80px;
  opacity: 0.07;
  animation: drift 14s ease-in-out infinite;
}

.orb-2 {
  width: 360px;
  height: 360px;
  background: #a07d2c;
  bottom: 5%;
  left: -80px;
  opacity: 0.06;
  animation: drift 18s ease-in-out infinite reverse;
}

.orb-3 {
  width: 280px;
  height: 280px;
  background: #ffffff;
  bottom: 30%;
  right: 10%;
  opacity: 0.04;
  animation: drift 22s ease-in-out infinite 3s;
}

@keyframes drift {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(20px, -30px) scale(1.08)
  }

  66% {
    transform: translate(-25px, 20px) scale(0.94)
  }
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader.done {
  opacity: 0;
  visibility: hidden;
}

.pre-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  color: #f5f5f5;
  letter-spacing: -0.03em;
}

.pre-text .pre-accent {
  color: #d4a843;
}

.pre-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #d4a843, #a07d2c);
  width: 0;
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(245, 245, 245, 0.05);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-logo .logo-dot {
  color: #d4a843;
}

#nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #888888;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: #d4a843;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: #f5f5f5;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: #f5f5f5;
}

.nav-cta {
  padding: 9px 22px;
  border: 1px solid rgba(212, 168, 67, 0.4);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #d4a843;
  transition: all 0.25s;
}

.nav-cta:hover {
  background: #d4a843;
  color: #050505;
  border-color: #d4a843;
}

#nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

#nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #f5f5f5;
  margin: 5px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

#theme-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 245, 0.1);
  background: #111111;
  color: #888888;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  font-size: 0.95rem;
}

#theme-btn:hover {
  border-color: #d4a843;
  color: #d4a843;
}

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #d4a843, #a07d2c);
  border-radius: 2px;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d4a843;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.section-sub {
  color: #888888;
  margin-top: 14px;
  max-width: 560px;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #d4a843;
  border-radius: 100px;
  color: #0e0d0b;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Syne', sans-serif;
  transition: background 0.4s ease, color 0.4s ease;
}

.btn-primary:hover {
  background: #f2ede4;
  color: #0e0d0b;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid rgba(242, 237, 228, 0.15);
  border-radius: 100px;
  color: #f2ede4;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s ease;
}

.btn-secondary:hover {
  border-color: #d4a843;
  color: #d4a843;
  background: rgba(212, 168, 67, 0.05);
}

.btn-sm {
  padding: 12px 28px;
  font-size: 0.9rem;
}

/* ── CARDS ── */
.card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 168, 67, 0.3);
}

.tilt {
  transform-style: preserve-3d;
}

/* ── SERVICE ICON ── */
.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 168, 67, 0.09);
  border-radius: 14px;
  font-size: 1.4rem;
  border: 1px solid rgba(212, 168, 67, 0.15);
}

/* ── PROJECT CARDS ── */
.project-preview {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

.project-label {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  position: relative;
  z-index: 1;
}

.project-preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 5, 0.5), transparent);
}

.pp-bypavo {
  background: linear-gradient(135deg, #1a0533, #4a1080);
  color: #e84393;
}

.pp-loading {
  background: linear-gradient(135deg, #0d0d0d, #2a2a2a);
  color: #f5f5f0;
}

.pp-o2morny {
  background: linear-gradient(135deg, #0a2a1a, #1a5c3a);
  color: #55efc4;
}

.pp-spydr {
  background: linear-gradient(135deg, #0a0a0a, #a07d2c);
  color: #d4a843;
}

/* ── MODAL ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 11, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  width: 100%;
  max-width: 800px;
  background: #161410;
  border-radius: 24px;
  border: 1px solid rgba(242, 237, 228, 0.08);
  overflow: hidden;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14, 13, 11, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #d4a843;
  color: #0e0d0b;
}

.modal-hero {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.modal-hero #modal-hero-text {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.05em;
  pointer-events: none;
}

.modal-body {
  padding: 40px;
}

.modal-meta-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px;
  border-radius: 12px;
}

.modal-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #d4a843;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.modal-meta-val {
  font-size: 0.85rem;
  color: #f2ede4;
  font-weight: 600;
}

/* ── PROJECT TAG ── */
.proj-tag {
  display: inline-block;
  font-size: 0.73rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.1);
  color: #d4a843;
}

/* ── TECH PILLS ── */
.tech-pill {
  padding: 10px 24px;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 500;
  color: #888888;
  background: #111111;
  transition: all 0.25s;
}

.tech-pill:hover {
  background: #26221b;
  border-color: rgba(212, 168, 67, 0.3);
  color: #d4a843;
  transform: translateY(-3px);
}

/* ── PROCESS STEPS ── */
.process-step {
  text-align: center;
  padding: 32px 20px;
}

.process-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #d4a843, #a07d2c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.3;
  margin-bottom: 14px;
}

/* ── IMPACT ── */
.impact-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.impact-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(255, 255, 255, 0.01);
}

.impact-number {
  font-family: 'Syne', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #f2ede4;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* ── PRICING ── */
.pricing-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 48px 32px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(212, 168, 67, 0.3);
}

.pricing-card.featured {
  background: rgba(212, 168, 67, 0.03);
  border-color: rgba(212, 168, 67, 0.2);
}

.pricing-card.featured:hover {
  background: rgba(212, 168, 67, 0.05);
  border-color: rgba(212, 168, 67, 0.4);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #d4a843, #a07d2c);
  color: #050505;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Syne', sans-serif;
  background: #26221b;
  color: #888888;
  border: 1px solid rgba(245, 245, 245, 0.08);
  transition: all 0.25s;
}

.pricing-cta:hover {
  border-color: #d4a843;
  color: #d4a843;
}

.pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, #d4a843, #a07d2c);
  color: #050505;
  border: none;
  box-shadow: 0 8px 24px rgba(212, 168, 67, 0.25);
}

.pricing-card.featured .pricing-cta:hover {
  filter: brightness(1.1);
}

/* ── FAQ ── */
.faq-item {
  background: #111111;
  border: 1px solid rgba(245, 245, 245, 0.07);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(212, 168, 67, 0.15);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 24px;
  background: none;
  border: none;
  color: #f5f5f5;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  color: #5a5040;

  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #d4a843;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: #888888;
  font-size: 0.93rem;
  line-height: 1.75;
}

/* ── SNIPPETS ── */
.snippet-card {
  background: #111111;
  border: 1px solid rgba(245, 245, 245, 0.06);
  border-radius: 24px;
  padding: 26px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.snippet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 168, 67, 0.08);
}

.snippet-card.hidden {
  display: none;
}

.snippet-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-new {
  background: #ffffff;
  color: #050505;
}

.badge-pop {
  background: #a07d2c;
  color: #f5f5f5;
}

.badge-free {
  background: #d4a843;
  color: #050505;
}

.snippet-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border-radius: 16px;
  margin-bottom: 14px;
  background: #26221b;
  border: 1px solid rgba(245, 245, 245, 0.06);
}

.snippet-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding-right: 64px;
  margin-bottom: 6px;
}

.snippet-card p {
  font-size: 0.82rem;
  color: #888888;
  line-height: 1.6;
  margin-bottom: 14px;
}

.price-now {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.price-old {
  font-size: 0.82rem;
  color: #5a5040;
  text-decoration: line-through;
}

.price-free {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #d4a843;
}

.filter-btn {
  padding: 7px 18px;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 999px;
  background: #111111;
  color: #888888;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: #d4a843;
  border-color: #d4a843;
  color: #050505;
}

/* ── TESTIMONIALS ── */
.testi-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testi-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(255, 255, 255, 0.01);
}

.testi-stars {
  color: #d4a843;
  letter-spacing: 3px;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 0.93rem;
  color: #888888;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 18px;
}

.testi-author {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.testi-role {
  font-size: 0.78rem;
  color: #5a5040;
}

/* ── WHY CARDS ── */
.why-card {
  background: #111111;
  border: 1px solid rgba(245, 245, 245, 0.07);
  border-radius: 24px;
  padding: 34px 26px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #d4a843, #a07d2c);
  transform: scaleX(0);
  transform-origin: left;

}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 168, 67, 0.08);
}

.why-card:hover::before {
  transform: scaleX(1);
}

/* ── ECO CARDS ── */
.eco-card {
  background: #0a0a0a;
  border: 1px solid rgba(212, 168, 67, 0.1);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.eco-card:hover {
  background: #111111;
  border-color: rgba(212, 168, 67, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.eco-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* ── CTA BOX ── */
.cta-box {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 100px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  display: none;
}

.cta-box h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.cta-box p {
  color: #888888;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ABOUT ── */
.about-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 64px 48px;
  display: flex;
  gap: 48px;
  align-items: center;
  transition: border-color 0.4s ease;
}

.about-card:hover {
  border-color: rgba(212, 168, 67, 0.3);
}

.about-avatar {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid rgba(212, 168, 67, 0.4);
  padding: 3px;
  flex-shrink: 0;
}

/* ── BUNDLE ── */
.bundle-box {
  background: #111111;
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bundle-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.06), rgba(201, 95, 58, 0.04));
  pointer-events: none;
}

.bundle-tag {
  display: inline-block;
  padding: 5px 14px;
  background: linear-gradient(135deg, #d4a843, #a07d2c);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #050505;
  font-family: 'Syne', sans-serif;
  margin-bottom: 14px;
}

.bundle-box h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.bundle-item {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(212, 168, 67, 0.1);
  font-size: 0.78rem;
  color: #d4a843;
}

/* ── FOOTER ── */
footer {
  padding: 38px 0;
  border-top: 1px solid rgba(245, 245, 245, 0.06);
  text-align: center;
}

.footer-link {
  font-size: 0.88rem;
  color: #5a5040;
  transition: color 0.2s;
  margin: 0 12px;
}

.footer-link:hover {
  color: #d4a843;
}

/* ── STICKY WIDGET ── */
#sticky-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #111111;
  border: 1px solid rgba(245, 245, 245, 0.1);
  border-radius: 999px;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transform: translateY(80px);
  opacity: 0;

}

#sticky-widget.visible {
  transform: translateY(0);
  opacity: 1;
}

#sticky-widget:hover {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 8px 32px rgba(212, 168, 67, 0.15);
}

.sw-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  flex-shrink: 0;
  animation: pulse 2.2s infinite;
}

.sw-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f5f5f5;
  white-space: nowrap;
  font-family: 'Syne', sans-serif;
}

.sw-text span {
  color: #5a5040;
  font-weight: 400;
}

/* ── MARQUEE ── */
.marquee-track {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.marquee-item {
  display: inline-block;
  margin: 0 40px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a5040;
  transition: color 0.3s;
}

.marquee-item:hover {
  color: #d4a843;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ── HERO (index only) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #d4a843;
  background: rgba(212, 168, 67, 0.07);
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(78, 201, 148, 0.5)
  }

  50% {
    box-shadow: 0 0 0 7px rgba(78, 201, 148, 0)
  }
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-accent {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px #d4a843;
}

.hero-accent-fill {
  background: linear-gradient(135deg, #d4a843 0%, #a07d2c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #d4a843;
  line-height: 1;
}

.split-char {
  display: inline-block;
}


}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ── SCROLL REVEAL ── */


.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media(max-width:768px) {
  #nav-links {
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 72px;
    /* Height of navbar */
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 32px;
    border-bottom: none;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: flex;
    /* Always flex but hidden */
  }

  #nav-links.open {
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Syne', sans-serif;
  }

  .nav-cta.desktop {
    display: none;
  }

  #nav-toggle {
    display: block;
  }

  .about-card {
    flex-direction: column;
    text-align: center;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }
}

/* ── WHATSAPP WIDGET ── */
#whatsapp-widget {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

#whatsapp-widget.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

#whatsapp-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);

}

#whatsapp-widget a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

#whatsapp-widget svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

/* ── NEURAL NETWORK CANVAS ── */
#neural-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* ── AI TYPING CURSOR ── */
.ai-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #d4a843;
  margin-left: 4px;
  animation: blink 0.8s step-end infinite;
  vertical-align: text-bottom;
  box-shadow: 0 0 8px rgba(212, 168, 67, 0.6), 0 0 20px rgba(212, 168, 67, 0.3);
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* ── HOLOGRAPHIC CARD EFFECT ── */
.holo-card {
  position: relative;
  overflow: hidden;
}

.holo-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from var(--holo-angle, 0deg),
      transparent 0%,
      rgba(212, 168, 67, 0.4) 10%,
      rgba(78, 201, 148, 0.3) 20%,
      transparent 30%,
      transparent 70%,
      rgba(212, 168, 67, 0.2) 80%,
      rgba(78, 201, 148, 0.4) 90%,
      transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.holo-card:hover::before {
  opacity: 1;
  animation: holoSpin 3s linear infinite;
}

@keyframes holoSpin {
  0% {
    --holo-angle: 0deg;
  }

  100% {
    --holo-angle: 360deg;
  }
}

/* Fallback for browsers without @property */
@property --holo-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}



/* ── HUD GRID OVERLAY (Hero only) ── */
.hud-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

/* ── DATA STREAM MARQUEE ── */
.marquee-track {
  position: relative;
}

.marquee-data-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.08;
  pointer-events: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: #d4a843;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: dataStream 20s linear infinite;
}

@keyframes dataStream {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── PLATFORM BADGES ── */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #111111;
  border: 1px solid rgba(245, 245, 245, 0.06);
  border-radius: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #888888;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}

.platform-badge:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.platform-badge .pb-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

/* Platform-specific hover colors */
.platform-badge[data-platform="upwork"]:hover {
  border-color: rgba(20, 168, 0, 0.4);
  color: #14a800;
}

.platform-badge[data-platform="upwork"] .pb-icon {
  background: rgba(20, 168, 0, 0.1);
  color: #14a800;
}

.platform-badge[data-platform="fiverr"]:hover {
  border-color: rgba(29, 191, 115, 0.4);
  color: #1dbf73;
}

.platform-badge[data-platform="fiverr"] .pb-icon {
  background: rgba(29, 191, 115, 0.1);
  color: #1dbf73;
}

.platform-badge[data-platform="mostaql"]:hover {
  border-color: rgba(59, 130, 246, 0.4);
  color: #3b82f6;
}

.platform-badge[data-platform="mostaql"] .pb-icon {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.platform-badge[data-platform="khamsat"]:hover {
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.platform-badge[data-platform="khamsat"] .pb-icon {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.platform-badge[data-platform="forlanso"]:hover {
  border-color: rgba(168, 85, 247, 0.4);
  color: #a855f7;
}

.platform-badge[data-platform="forlanso"] .pb-icon {
  background: rgba(168, 85, 247, 0.1);
  color: #a855f7;
}

.platform-badge[data-platform="instagram"]:hover {
  border-color: rgba(236, 72, 153, 0.4);
  color: #ec4899;
}

.platform-badge[data-platform="instagram"] .pb-icon {
  background: rgba(236, 72, 153, 0.1);
  color: #ec4899;
}

.platform-badge[data-platform="linkedin"]:hover {
  border-color: rgba(14, 118, 168, 0.4);
  color: #0e76a8;
}

.platform-badge[data-platform="linkedin"] .pb-icon {
  background: rgba(14, 118, 168, 0.1);
  color: #0e76a8;
}

.platform-badge[data-platform="facebook"]:hover {
  border-color: rgba(24, 119, 242, 0.4);
  color: #1877f2;
}

.platform-badge[data-platform="facebook"] .pb-icon {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}


/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #d4a843, #a07d2c);
  z-index: 100000;
  transition: width 0.1s linear;
}

/* ── COMPARISON SLIDER ── */
.ba-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  background: #0a0a0a;
  user-select: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ba-before {
  width: 50%;
  z-index: 2;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ba-before img {
  width: 200%;
  /* Compensate for parental width 50% */
}

.ba-label,
.ba-after-label {
  position: absolute;
  top: 24px;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 4px;
  z-index: 3;
}

.ba-label {
  left: 24px;
}

.ba-after-label {
  right: 24px;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 2px;
  background: white;
  z-index: 10;
  transform: translateX(-50%);
  cursor: ew-resize;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ba-handle-line {
  width: 1px;
  height: 100%;
  background: white;
  opacity: 0.5;
}

.ba-handle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d4a843;
  color: #050505;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.4);
  border: 4px solid #0a0a0a;
}

/* ── PRICING TOGGLE ── */
.pricing-toggle-container {
  display: flex;
  background: #111111;
  border: 1px solid rgba(245, 245, 245, 0.08);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  position: relative;
}

.pricing-toggle-btn {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #888888;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  border: none;
}

.pricing-toggle-btn.active {
  background: #d4a843;
  color: #050505;
}

.pricing-toggle-btn:not(.active):hover {
  color: #f5f5f5;
  background: rgba(245, 245, 245, 0.03);
}

/* ── CASE STUDY ── */
.case-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 160px 24px 80px;
  position: relative;
}

.case-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.case-screenshot {
  width: 100%;
  max-width: 1100px;
  margin: -60px auto 30px;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.case-screenshot img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(242, 237, 228, 0.06);
}

.case-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 60px 24px;
}

.case-section h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #d4a843;
}

.case-section p {
  color: #888888;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.case-nav {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  border-top: 1px solid rgba(242, 237, 228, 0.06);
}

.case-nav a {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #888888;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-nav a:hover {
  color: #d4a843;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
}

.metric-item {
  background: #111111;
  border: 1px solid rgba(242, 237, 228, 0.06);
  padding: 24px;
  border-radius: 16px;
  text-align: center;
}

.metric-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #d4a843;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}



/* ── AI & FUTURISTIC EFFECTS ── */
#neural-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.hud-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(212, 168, 67, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212, 168, 67, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}



.marquee-data-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: rgba(212, 168, 67, 0.08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  animation: data-stream 20s linear infinite reverse;
}

@keyframes data-stream {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.holo-card {
  position: relative;
  background: #1e1b16;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.holo-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 0);
  left: var(--mouse-x, 0);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.holo-card:hover::before {
  opacity: 1;
}

.holo-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 168, 67, 0.1) inset;
}

/* ── MOBILE NAVIGATION ── */
@media (max-width: 991px) {
  #nav-toggle {
    display: block !important;
    position: relative;
    z-index: 1002;
  }

  #nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background: #0e0d0b;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    gap: 30px !important;
  }

  #nav-links.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.5rem !important;
    font-weight: 700;
  }

  .desktop {
    display: none !important;
  }

  /* Hamburger to X */
  #nav-toggle.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  #nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  #nav-toggle.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ── FLICKITY CUSTOM ── */
.main-carousel {
  margin-bottom: 40px;
}

.carousel-cell {
  width: 100%;
  margin-right: 20px;
}

@media (min-width: 768px) {
  .carousel-cell {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-cell {
    width: 33.333%;
  }
}

.flickity-page-dots {
  bottom: -30px;
}

.flickity-page-dots .dot {
  background: #d4a843;
  opacity: 0.2;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.flickity-button {
  background: rgba(22, 20, 16, 0.8);
  color: #d4a843;
  backdrop-filter: blur(8px);
}

.flickity-button:hover {
  background: #d4a843;
  color: #0e0d0b;
}