:root {
  --bg: #0b0b0e;
  --text: #fff;
  --purple: #9800ef;
  --pink: #ff00ff;
  --green: #00FF6A;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
}

html, body {
  background: #000;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* NAVBAR */
.glass-nav {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  z-index: 100;
  border-radius: 20px;
  border: 1px solid var(--purple);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  height: 42px;
  border-radius: 8px;
}
.brand-name {
  font-weight: 700;
}
.nav-center a {
  margin: 0 14px;
  color: #fff;
  text-decoration: none;
}
.nav-center a:hover {
  color: var(--purple);
}
.get-started {
  display: inline-block; /* important ca să nu se întindă ciudat */
  position: relative;
  overflow: hidden; /* păstrează highlight-ul în interior */
  border-radius: 14px;  
  padding: 10px 26px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  color: #fff;

  /* GRADIENT nou (premium, mov → mai închis) */
  background: linear-gradient(180deg, #9a00ff 0%, #5a0099 100%);

  /* Fix colțuri: */
  border: none;
  overflow: hidden;  /* <<< face colțurile perfect rotunde */

  /* highlight + glow subtil */
  box-shadow:
    0 4px 14px rgba(152, 0, 239, 0.40),
    inset 0 1px 10px rgba(255,255,255,0.15);

  transition: 0.25s ease;
  position: relative;
}

/* Highlight alb subtil sus */
.get-started::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0));
  pointer-events: none;
}

/* Hover */
.get-started:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 22px rgba(152, 0, 239, 0.55),
    inset 0 1px 14px rgba(255,255,255,0.22);
}

/* Press */
.get-started:active {
  transform: translateY(0);
  box-shadow:
    0 2px 10px rgba(152, 0, 239, 0.35),
    inset 0 2px 18px rgba(0,0,0,0.45);
}

/* HERO */
.hero {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  position: relative;
  padding-top: 110px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 400px at 20% 40%, rgba(152, 0, 239, 0.2), transparent 80%),
    radial-gradient(600px 500px at 80% 60%, rgba(255, 0, 255, 0.15), transparent 80%),
    radial-gradient(800px 600px at 50% 100%, rgba(0, 0, 0, 0.7), transparent 90%);
  z-index: 0;
  filter: blur(20px);
}
.hero-content {
  position: relative;
  z-index: 2;
}

/* Available */
.available-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 16px;
  gap: 8px;
  color: #c9cad1;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 40px;
}
.green-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  animation: pulse 1.6s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { opacity: .8; }
  50% { opacity: 1; }
}

/* Title */
.hero-title {
  font-weight: 900;
  font-size: 99px;
  line-height: 0.5;
  margin-top: 80px; /* 🔹 mută textul mai jos */
  margin-bottom: 60px; /* spațiu frumos sub el */
}
.top-line {
  display: block;
  font-weight: 800;
  color: #f3ecfe;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}
.into-line {
  display: inline-flex;
  align-items: flex-end;
  gap: 14px;
}
.into {
  font-size: 88px;
  color: #f3ecfe;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}
.viewers-text {
  font-family: 'Blink Script', cursive;
  font-size: 170px;
  color: #ff0000;
  text-shadow: 0 0 8px rgba(255, 0, 0, 0.9);
  position: relative;
  top: 10px;
}

/* LOOP CREATORS */
.trusted {
  margin-top: 200px;
  margin-bottom: 0px;
  text-align: center;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.trusted h3 { margin-bottom: 28px; }
.creator-loop {
  overflow: hidden;
  position: relative;
  width: 600px;
  height: 100px;
  margin: 60px auto 0;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.loop-track {
  display: flex;
  gap: 90px;
  position: absolute;
  top: 0;
  left: 0;
}
.creator {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  white-space: nowrap;
  opacity: 0.95;
  transition: transform 0.2s ease;
}
.creator:hover { transform: scale(1.05); }
.creator img {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.creator p { margin: 0; font-size: 15px; font-weight: 500; }
.creator span { color: #bbb; font-size: 12px; }

/* === PROCESS SECTION === */
.process {
  text-align: center;
  padding: 40px 40px 120px; /* sus mic, jos normal */
  margin-top: -120px; /* trage toată secțiunea mai sus */
  background: #000;
  color: #f2f2f2;
}
.process-title {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 52px;
  margin-bottom: 90px;
  color: #fff;
  letter-spacing: -0.5px;
}
.process-title span { color: var(--purple); }

/* --- CARDURI --- */
.process-steps {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
}
.step-card {
  position: relative;
  background: transparent;
  border: 1px solid rgba(152, 0, 239, 0.25);
  border-radius: 18px;
  padding: 28px 24px;
  color: #fff;
  width: 320px;
  transition: all 0.35s ease;
  cursor: pointer;
  overflow: visible;
}
.step-card:hover {
  border-color: rgba(255, 0, 255, 0.6);
  box-shadow: 0 0 35px rgba(152, 0, 239, 0.25);
  transform: translateY(-6px);
}
.step-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.step-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #b100ff, #6000b5);
  color: #fff;
  font-weight: 700;
  font-size: 17px;
  padding: 6px 22px;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(152, 0, 239, 0.5);
  z-index: 3;
}
.step-card h3 {
  margin: 10px 0 8px;
  font-weight: 700;
  font-size: 22px;
}
.step-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #cfcfcf;
  font-weight: 300;
  letter-spacing: 0.3px;
}
.highlight {
  color: var(--pink);
  font-weight: 500;
}

/* FOOTER */
footer {
  text-align: center;
  color: #aaa;
  font-size: 14px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* === FAQ SECTION === */
.faq {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 160px 40px;
}

/* Titlu */
.faq-title {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 80px;
}
.faq-title span {
  color: var(--purple);
}

/* Containerul principal — centrează totul */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Fiecare întrebare */
.faq-item {
  border: 1px solid rgba(152, 0, 239, 0.35);
  border-radius: 18px;
  background: transparent;
  padding: 22px 28px;
  text-align: left;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.faq-item:hover {
  border-color: rgba(255, 0, 255, 0.6);
  box-shadow: 0 0 20px rgba(152, 0, 239, 0.1);
}

/* Întrebarea */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  transition: color 0.3s ease;
}

/* Activă = mov */
.faq-item.active .faq-question {
  color: var(--purple);
}

/* Săgeata */
.arrow {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* Răspuns */
.faq-answer {
  font-size: 17px;
  color: #bfbfbf;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 14px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
}

.highlight {
  color: var(--pink);
  font-weight: 500;
}

/* === WORK SECTION === */
.work {
  background: #000;
  text-align: center;
  padding: 70px 0 120px; /* 🔹 ridicăm secțiunea */
  overflow: hidden;
  margin-top: -100px; /* 🔹 o tragem puțin mai sus */
}
.work-title {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: #fff;
  margin-bottom: 100px;
}
.work-title span { color: var(--purple); }

/* --- LOOP CLEAN --- */
.work-loop {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.work-track {
  display: flex;
  gap: 60px;
  align-items: center;
  width: max-content;
}
.work img {
  width: 440px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(152, 0, 239, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(152, 0, 239, 0.25);
}

/* === WORK LOOP CLEAN === */
.work {
  background: #000;
  text-align: center;
  padding: 160px 0;
  overflow: hidden;
}

.work-title {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  font-size: 52px;
  color: #fff;
  margin-bottom: 100px;
}

.work-title span {
  color: var(--purple);
}

.work-row {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  margin-bottom: 80px;
}

.work-track {
  display: flex;
  gap: 40px;
  animation: scroll 35s linear infinite;
}

.work-row.reverse .work-track {
  animation-direction: reverse;
  animation-duration: 45s;
}

.work-track img {
  height: 260px;
  width: auto;
  border-radius: 16px;
  border: 1px solid rgba(152, 0, 239, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-track img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(152, 0, 239, 0.3);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.more-work {
  color:#b8b8b8;
  font-size:17px;
  margin-top:-60px;
  margin-bottom:80px;
  font-family:"SF Pro Display";
}

.more-link {
  color:#ffffff;
  text-decoration:underline;
  transition:0.25s ease;
}

.more-link:hover {
  color: var(--purple);
  text-shadow: 0 0 12px rgba(152, 0, 239, 0.6);
}


/* === FORCE SF PRO DISPLAY FONT FOR HERO TITLE === */
.sf-font {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 700 !important;
  letter-spacing: -1px;
  color: #f3ecfe !important;
}


/* === COUNTER SECTION (MINIMAL STYLE) === */
.stats-counter {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 140px;
  padding: 20px 0 60px;
  background: #000;
  text-align: center;
  flex-wrap: wrap;
  margin-top: -80px; /* 🔹 urcă secțiunea mai aproape de thumbnails */
}

.counter-box {
  color: #fff;
  font-family: "SF Pro Display", sans-serif;
}

.counter {
  display: inline-block;
  font-size: 82px;
  font-weight: 700;
  color: #ff00ff; /* roz aprins */
  text-shadow: 0 0 18px rgba(255, 0, 255, 0.25);
}

.plus-sign {
  font-size: 68px;
  font-weight: 700;
  color: #ff00ff;
  margin-left: 4px;
}

.counter-box p {
  font-size: 20px;
  color: #b9b9b9;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

/* === CONTACT SECTION — FINAL, OVERRIDE === */
.contact {
  background: #000 !important;
  color: #fff !important;
  padding: 140px 40px 160px !important;
  text-align: center !important;
}

.contact-title {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 52px !important;
  margin-bottom: 60px !important;
}

/* — Form fără container mare — */
.contact-form {
  max-width: 980px !important;
  margin: 0 auto !important;
  text-align: left !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 28px !important;
}

/* — Rânduri / Grid — */
.form-row {
  display: grid !important;
  gap: 22px !important;
  align-items: start !important;
  margin: 0 !important;
  padding: 0 !important;
}

.form-row.one-col { grid-template-columns: 1fr !important; }
.form-row.two-col { grid-template-columns: 1fr 1fr !important; gap: 28px !important; }

.form-field { display: flex !important; flex-direction: column !important; }

/* — Label-uri: aliniere uniformă — */
.contact-form label {
  font-size: 14px !important;
  color: #cfcfcf !important;
  display: block !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  margin: 4px 0 8px 0 !important; /* coboară ușor toate titlurile */
}

/* — Inputs / Select / Textarea — */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100% !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(152, 0, 239, 0.3) !important;
  border-radius: 12px !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 15px !important;
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif !important;
  outline: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
  box-sizing: border-box !important;
}

.contact-form ::placeholder {
  color: #bdbdbd !important;
  opacity: 1 !important;
}

.contact-form textarea {
  resize: vertical !important;
  line-height: 1.5 !important;
  min-height: 140px !important; /* Project Description la fel ca restul */
}

/* — Select (dropdown) — vizibilitate + săgeată — */
.select-wrap { position: relative !important; }

.select-wrap select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 42px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
  cursor: pointer !important;
}

.select-wrap select option {
  background-color: #1b1b1b !important;
  color: #fff !important;
}

/* Săgeata dropdown */
.select-arrow {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #cfcfcf !important;
  pointer-events: none !important;
  font-size: 14px !important;
}

/* — Focus — */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(255, 0, 255, 0.6) !important;
  box-shadow: 0 0 20px rgba(152, 0, 239, 0.18) !important;
}

/* — Submit — */
.form-actions {
  margin-top: 10px !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.btn-submit {
  background: #9800ef !important;
  color: #fff !important;
  border: 1px solid #9800ef !important;
  border-radius: 12px !important;
  padding: 14px 22px !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  cursor: pointer !important;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease !important;
  box-shadow: 0 0 16px rgba(152, 0, 239, 0.35) !important;
}
.btn-submit:hover { transform: translateY(-2px) !important; box-shadow: 0 0 28px rgba(152, 0, 239, 0.5) !important; }
.btn-submit:active { transform: translateY(0) !important; }

/* — Responsive — */
@media (max-width: 860px) {
  .form-row.two-col { grid-template-columns: 1fr !important; }
  .form-actions { justify-content: center !important; }
}

/* === FIX alignment for form labels (Name, YouTube, Project) === */
label[for="name"],
label[for="yt"],
label[for="message"] {
  display: block;
  margin-top: 30px;   /* coboară titlul */
  margin-bottom: 8px;
  position: relative;
  top: 22px;
}

/* === FOOTER REDESIGN === */
footer {
  background: transparent;
  padding: 40px 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #aaa;
  font-size: 14px;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.footer-icons img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-icons img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* === PORTFOLIO PAGE (GRID FIXED 3 per row) === */
.portfolio-page {
  padding: 160px 6vw;
  background: #000;
  text-align: center;
}

.portfolio-title {
  font-family: "SF Pro Display", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 70px;
}
.portfolio-title span { color: var(--purple); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: 90%;
  margin: auto;
}

.portfolio-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform .3s ease, opacity .3s ease;
}

.portfolio-grid img:hover {
  transform: scale(1.04);
  opacity: 1;
  box-shadow: 0 0 28px rgba(152, 0, 239, 0.40); /* soft purple glow */
}
/* Laptop / Tablet */
@media(max-width: 1100px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Phone */
@media(max-width: 650px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-title { font-size: 42px; }
}

@media(max-width: 900px) {
  .glass-nav {
    width: 90%;
    top: 12px;
    padding: 6px 0;
  }

  .nav-inner {
    padding: 10px 18px;
  }

  .nav-center {
    display: none; /* ascundem meniul lung pe telefon */
  }
}

@media(max-width: 900px) {
  .hero-title { font-size: 60px; line-height: 0.9; }
  .into { font-size: 48px; }
  .viewers-text { font-size: 110px; top: 0; }
}

@media(max-width: 600px) {
  .hero-title {
    font-size: 66px;
    line-height: 0.85;
    margin-top: 60px;
  }
  .into {
    font-size: 76px;
  }
  .viewers-text {
    font-size: 110px;
    top: 10px;
  }
}

@media(max-width: 900px) {
  .work-track img { height: 180px; }
}
@media(max-width: 600px) {
  .work-track img {
    height: 170px;        /* înainte 130 → acum mai mare */
    border-radius: 14px;
  }
}

@media(max-width: 900px) {
  .work-track img {
    height: 210px;  /* înainte 180 */
  }
}


@media(max-width: 900px) {
  .process-steps { gap: 30px; }
  .step-card { width: 90%; }
}

@media(max-width: 700px) {
  .faq-title { font-size: 38px; }
  .faq-question { font-size: 18px; }
  .faq-answer { font-size: 15px; }
}

@media(max-width: 700px) {
  .form-actions { justify-content: center !important; }
}

@media(max-width: 700px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* === MOBILE NAV MENU === */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}
.nav-mobile-toggle span {
  width: 26px;
  height: 2.8px;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s;
}

/* Hidden mobile menu */
.nav-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 65%;
  background: rgba(15, 15, 18, 0.92);
  backdrop-filter: blur(16px);
  border-left: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  padding: 120px 40px;
  gap: 28px;
  transition: 0.35s ease;
  z-index: 999;
}
.nav-mobile-menu a {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
}
.nav-mobile-menu a:hover {
  color: var(--purple);
}

/* Default (Index) → pe telefon afișăm meniul mobil */
@media(max-width: 900px) {
  body:not(.page-portfolio) .nav-center { display: none; }
  body:not(.page-portfolio) .nav-right { display: none; }
  body:not(.page-portfolio) .nav-mobile-toggle { display: flex; }
}

/* Slide open */
.nav-mobile-menu.active {
  right: 0;
}

/* Burger → X animation */
.nav-mobile-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* === FINAL RESPONSIVE FIXES === */

/* Hero Title pe telefoane mici */
@media(max-width: 430px) {
  .hero-title { 
    font-size: 36px; 
    line-height: 0.9;
  }
  .into { font-size: 28px; }
  .viewers-text { font-size: 58px; top: -4px; }
}

/* Trusted Loop fix la margini */
@media(max-width: 600px) {
  .creator-loop {
    width: 92%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
}

/* Contact padding mai mic pe telefon */
@media(max-width: 600px) {
  .contact {
    padding: 100px 24px 120px !important;
  }
}

@media(max-width: 600px) {
  .trusted {
    margin-top: 100px; /* înainte era 200px */
  }

  .creator-loop {
    height: 80px; /* mai compact */
    margin-top: 30px;
  }

  .creator img {
    width: 46px;
    height: 46px;
  }

  .creator p {
    font-size: 13px;
  }
}

/* === NAVBAR FIX PORTFOLIO === */

/* Desktop (mai mare de 900px) → ascundem meniul mobil */
@media(min-width: 901px) {
  .nav-mobile-toggle,
  .nav-mobile-menu {
    display: none !important;
  }

  .nav-center,
  .nav-right {
    display: flex !important;
  }
}

/* === ENABLE MOBILE NAV ALSO ON PORTFOLIO === */
@media(max-width: 900px) {
  body.page-portfolio .nav-center { display: none; }
  body.page-portfolio .nav-right { display: none; }
  body.page-portfolio .nav-mobile-toggle { display: flex; }
}

body.page-portfolio .nav-mobile-menu {
  display: flex;
}

/* === FORCE MOBILE NAV ON PORTFOLIO PAGE === */

/* ascunde meniul desktop pe mobil */
@media(max-width: 900px) {
  body.page-portfolio .nav-center {
    display: none !important;
  }
  body.page-portfolio .nav-right {
    display: none !important;
  }

  /* AFIȘEAZĂ ICONIȚA BURGER */
  body.page-portfolio .nav-mobile-toggle {
    display: flex !important;
  }

  /* meniu mobil pornește off-screen (default) */
  body.page-portfolio .nav-mobile-menu {
    right: -100% !important;
  }

  /* când este activ → slide */
  body.page-portfolio .nav-mobile-menu.active {
    right: 0 !important;
  }
}

/* === PORTFOLIO NAV RESPONSIVE === */
@media(max-width: 900px) {
  body.page-portfolio .nav-center { display: none; }
  body.page-portfolio .nav-right { display: none; }
  body.page-portfolio .nav-mobile-toggle { display: flex; }
}

/* ✅ Repară meniul mobil pe pagina de portofoliu */
body.page-portfolio .nav-mobile-menu {
  display: flex !important;
}

/* ✅ NAVBAR FINAL */

/* Desktop (≥ 900px) */
@media (min-width: 900px) {
  .nav-center { display: flex !important; }
  .nav-right { display: block !important; }
  .nav-mobile-toggle { display: none !important; }
  .nav-mobile-menu {
    display: none !important;
    right: -100% !important;
  }
}

/* Mobile (< 900px) */
@media (max-width: 899px) {
  .nav-center { display: none !important; }
  .nav-right { display: none !important; }
  .nav-mobile-toggle { display: flex !important; }
  .nav-mobile-menu { display: flex !important; }
}

img {
  transform: translateZ(0); /* previne blur / ghosting în scroll */
  backface-visibility: hidden;
}

@media(max-width: 700px) {
  .glass-nav {
    backdrop-filter: blur(10px) !important;
  }
}


