/* =====================
   VARIABLES
   ===================== */
:root {
  --border-subtle: rgba(245, 242, 250, 0.12);
  --text-primary: rgba(245, 242, 250, 1);
  --text-muted: rgba(245, 242, 250, 0.6);
  --bg-page: #07060a;
  --purple: #7C3AED;
  --purple-hover: #6D28D9;

  --section-gap: 170px;
}

@media (max-width: 1024px) {
  :root { --section-gap: 120px; }
}

@media (max-width: 480px) {
  :root { --section-gap: 90px; }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--bg-page);
  color: var(--text-primary);
}

/* =====================
   NAVBAR
   ===================== */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 16px 40px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1300px;
  padding: 10px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  background: rgba(13, 11, 18, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 12px;
  flex-shrink: 0;
}

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

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 400;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a {
  position: relative;
}

.nav-link__line {
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #9333ea;
  transform: scaleX(0);
  transform-origin: left center;
  display: block;
}

/* CTA Button */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: var(--purple);
  padding: 12px 24px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--purple-hover);
}

/* Hamburger — ascuns pe desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(13, 11, 18, 0.75);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-right: 4px;
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transform-origin: center;
  transition: none;
}

/* Mobile Menu */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background: var(--bg-page);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 0 32px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-menu.is-open {
  pointer-events: all;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 320px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

.mobile-nav-links a {
  text-decoration: none;
  color: #f5f2fa;
  font-size: 28px;
  font-weight: 400;
  transition: color 0.2s ease;
}

.mobile-nav-links a:hover {
  color: var(--text-primary);
}

.mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: var(--purple);
  padding: 16px 32px;
  border-radius: 100px;
  transition: background 0.2s ease;
  width: fit-content;
}

.mobile-cta:hover {
  background: var(--purple-hover);
}

/* =====================
   RESPONSIVE NAVBAR
   ===================== */
@media (max-width: 1024px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-wrapper {
    padding: 16px 20px;
  }
}

/* =====================
   HERO
   ===================== */
.hero {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 80px;
  overflow: hidden;
  position: relative;
}

/* ---- Floating Cards ---- */
.hero-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-cards-row {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 180px;
  height: 280px;
  padding: 30px 14px 16px;
  border-radius: 12px;
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.45) 0%, transparent 70%);
  border: 1px solid rgba(245, 242, 250, 0.15);
  pointer-events: all;
  isolation: isolate;
}

.hero-card__glow {
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  box-shadow: 0 0 40px 10px rgba(147, 51, 234, 0.55);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.hero-card--1 {
  top: 10%;
  left: 4%;
  transform: rotate(-8deg);
}

.hero-card--2 {
  top: 8%;
  right: 4%;
  transform: rotate(7deg);
}

.hero-card--3 {
  bottom: 10%;
  left: 6%;
  transform: rotate(6deg);
}

.hero-card__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 6px;
  background: rgba(245, 242, 250, 0.15);
  border-radius: 100px;
}

.hero-card__number {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-card__image {
  width: 100%;
  border-radius: 8px;
  background: rgba(245, 242, 250, 0.04);
  height: 190px;
  flex-shrink: 0;
}

.hero-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.hero-card__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-card__role {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Tablet & Mobile ---- */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 120px 20px 80px;
    min-height: unset;
  }

  .hero-inner {
    order: 1;
    margin-bottom: 32px;
    width: 100%;
  }

  .hero-cards {
    order: 2;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    inset: auto !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    pointer-events: all;
    width: 100%;
  }

  .hero-cards-row {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 16px;
    width: 100%;
    height: auto;
  }

  .hero-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    flex-shrink: 0;
  }

  .hero-card--1 { transform: rotate(-4deg); }
  .hero-card--2 { transform: rotate(0deg);  }
  .hero-card--3 { transform: rotate(4deg);  }

  .hero-actions {
    position: static !important;
    display: flex !important;
    justify-content: center;
    width: 100%;
    pointer-events: all;
  }
}

/* ---- Mobile ---- */
@media (max-width: 480px) {
  .hero {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 60px;
  }

  .hero-inner {
    margin-bottom: 24px;
  }

  .hero-cards-row {
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column !important;
    align-items: center;
    gap: 10px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-card {
    width: 120px !important;
    height: 200px !important;
    padding: 24px 12px 14px !important;
    gap: 8px !important;
  }

  .hero-card__image {
    height: 130px !important;
  }

  .hero-card__notch {
    width: 28px;
    height: 5px;
  }

  .hero-card__name { font-size: 9px; }
  .hero-card__role { font-size: 8px; }

  .hero-card__number {
    font-size: 9px;
    top: 8px;
    right: 10px;
  }
}

.hero-inner {
  width: 100%;
  max-width: 1300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(147, 51, 234, 0.5);
}

.hero-eyebrow .eyebrow {
  font-size: 15px;
  color: #9333ea;
  white-space: nowrap;
}

/* Heading */
.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}

.hero-h2 {
  font-size: clamp(32px, 4.5vw, 72px);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.hero-h2 span {
  display: inline-block;
}

.hero-h1 {
  font-size: clamp(60px, 10vw, 160px);
  font-weight: 900;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-h1 span {
  display: inline-block;
}

.colab-etape-title {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  .colab-etape-title { margin-bottom: 60px; }
}

@media (max-width: 1024px) {
  .colab-etape-title { font-size: 48px; }
}

.colab-section-2 {
  margin-top: 100px;
  padding: 0 40px;
}

@media (max-width: 1024px) {
  .colab-section-2 { margin-top: 90px; padding: 0 24px; }
}

@media (max-width: 600px) {
  .colab-section-2 { margin-top: 90px; padding: 0 20px; }
}

.colab-section-3 {
  padding-top: var(--section-gap);
  padding-bottom: 80px;
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 1024px) {
  .colab-section-3 { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 600px) {
  .colab-section-3 { padding-left: 20px; padding-right: 20px; }
}

.etape-wrap {
  max-width: 740px;
  margin: 0 auto;
}

/* =====================
   COLAB BENEFITS
   ===================== */
.colab-benefits {
  padding-top: var(--section-gap);
  padding-bottom: 80px;
  padding-left: 40px;
  padding-right: 40px;
}

.colab-benefits__list {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.colab-benefit-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.12);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.colab-benefit-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(147, 51, 234, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.colab-benefit-item:hover::before {
  opacity: 1;
}

.colab-benefit-item__name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 220px;
  flex-shrink: 0;
}

.colab-benefit-item__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.colab-benefit-item__number {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: #9333ea;
  min-width: 28px;
  flex-shrink: 0;
  text-align: right;
}

@media (max-width: 1024px) {
  .colab-benefits { padding-left: 24px; padding-right: 24px; }
  .colab-benefit-item__name { min-width: 180px; }
}

@media (max-width: 600px) {
  .colab-benefits { padding-left: 20px; padding-right: 20px; }
  .colab-benefit-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .colab-benefit-item__number {
    position: absolute;
    top: 20px;
    right: 24px;
  }
  .colab-benefit-item__name { min-width: unset; }
}

.etape-stack {
  --card-top-padding: 1.5em;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 70vh);
  padding-bottom: calc(3 * var(--card-top-padding));
}

.etape-stack__item {
  position: sticky;
  top: 80px;
}

.etape-stack__item:nth-child(1) { padding-top: calc(1 * var(--card-top-padding)); z-index: 1; }
.etape-stack__item:nth-child(2) { padding-top: calc(2 * var(--card-top-padding)); z-index: 2; }
.etape-stack__item:nth-child(3) { padding-top: calc(3 * var(--card-top-padding)); z-index: 3; }


.etape-card {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.2) 0%, transparent 70%), #0d0b18;
  min-height: 320px;
  padding: 30px;
  cursor: pointer;
}

.etape-card__glow {
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  box-shadow: 0 0 40px 10px rgba(147, 51, 234, 0.55);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.etape-card:hover .etape-card__glow {
  opacity: 1;
}

.etape-card__btn {
  margin-top: 32px;
}

.etape-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.etape-card__number {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 48px;
  color: #9333ea;
  line-height: 1;
}

.etape-card__desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: left;
  opacity: 0.85;
  margin-top: 20px;
  margin-bottom: 0;
}

.etape-card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 26px;
  color: var(--text-primary);
  margin-top: 32px;
  margin-bottom: 0;
  max-width: 300px;
}

@media (max-width: 1024px) {
  .etape-card__title { font-size: 24px; }
}

@media (max-width: 600px) {
  .etape-card__title { font-size: 20px; }
  .etape-card {
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .etape-card__top {
    width: 100%;
    align-items: center;
  }
  .etape-card__number { font-size: 38px; }
  .etape-card__title { max-width: 100%; }
  .etape-card__desc { text-align: center; }
  .etape-card__btn {
    width: 100%;
    justify-content: center;
  }
}

.etape-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1px solid rgba(147, 51, 234, 0.55);
  background: rgba(10, 8, 18, 0.5);
}

.etape-pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7c3aed;
  flex-shrink: 0;
}

.etape-pill__text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.colab-section-2__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.colab-partners-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 22px;
  color: #9333ea;
  text-align: center;
}

.colab-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  gap: 24px;
  margin-top: 32px;
}

.colab-card {
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.2) 0%, transparent 70%);
  min-height: 200px;
}

@media (max-width: 600px) {
  .colab-cards {
    grid-template-columns: 1fr;
  }
}

.hero--page {
  padding-top: 160px;
  align-items: flex-start;
  min-height: unset;
}

@media (max-width: 1024px) {
  .hero--page { padding-top: 120px; }
}

@media (max-width: 600px) {
  .hero--page { padding-top: 90px; }
}

.hero-h1--page {
  font-size: 104px;
  font-weight: 900;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 0.9;
}

@media (max-width: 1024px) {
  .hero-h1--page { font-size: 68px; }
}

@media (max-width: 600px) {
  .hero-h1--page { font-size: 46px; }
}

/* Subtitle */
.hero-subtitle {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(24px, 4vw, 48px);
  color: #9333ea;
  margin-bottom: 32px;
}

/* Divider */
.hero-divider {
  width: 40px;
  height: 2px;
  background: rgba(245, 242, 250, 0.3);
  margin-bottom: 32px;
}

/* Paragraph */
.hero-paragraph {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  text-align: center;
  opacity: 0.85;
}

/* Hero Buttons */
.hero-actions {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  pointer-events: all;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-btn--primary {
  background: var(--purple);
  color: #fff;
}

.hero-btn--primary:hover {
  background: var(--purple-hover);
}

.hero-btn--secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.hero-btn--secondary:hover {
  border-color: rgba(245, 242, 250, 0.25);
}

.hero-paragraph strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-highlight {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #9333ea;
}

/* ---- Carduri medii (intre mobile si desktop) ---- */
@media (max-width: 620px) and (min-width: 481px) {
  .hero-cards-row {
    gap: 10px;
  }

  .hero-card {
    width: 150px !important;
    height: 230px !important;
    padding: 26px 12px 14px !important;
  }

  .hero-card__image {
    height: 155px !important;
  }
}

/* =====================
   LOGOS MARQUEE
   ===================== */
.logos-section {
  width: 100%;
  padding: 40px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

.logos-eyebrow {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--text-muted);
  opacity: 0.85;
  text-align: center;
}

.logos-eyebrow__brand {
  color: #9333ea;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  will-change: transform;
}

.marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.marquee-logo {
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.5;
  filter: grayscale(100%);
  display: block;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.marquee-logo:hover {
  opacity: 0.9;
  filter: grayscale(0%);
}

/* =====================
   SECTION SHARED STYLES
   ===================== */
.section-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-eyebrow .eyebrow {
  font-size: 16px;
  color: #9333ea;
  white-space: nowrap;
}

.section-eyebrow .eyebrow-line {
  background: rgba(147, 51, 234, 0.5);
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  width: 100%;
}

@media (max-width: 1024px) {
  .section-heading { font-size: 40px; }
}

@media (max-width: 480px) {
  .section-heading { font-size: 32px; }

  .hero-paragraph,
  .provocari-paragraph,
  .prov-card__text {
    font-size: 15px;
  }
}

.section-heading__accent {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: #9333ea;
  font-weight: 800;
}

/* =====================
   PORTFOLIO SECTION
   ===================== */
.portfolio-section {
  padding-top: var(--section-gap);
  padding-bottom: 120px;
}

/* Portfolio Cards Container */
.portfolio-cards {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 80px auto 0;
  height: 680px;
  padding: 0 40px;
}

/* Base card style */
.pcard {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.4) 0%, transparent 70%);
  cursor: pointer;
  pointer-events: all;
  isolation: isolate;
}

.pcard__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 6px;
  background: rgba(245, 242, 250, 0.15);
  border-radius: 100px;
  z-index: 2;
}

.pcard__image {
  margin: 14px 14px 0;
  border-radius: 10px;
  background: rgba(10, 8, 18, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

.pcard__number {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 64px;
  color: rgba(245, 242, 250, 0.7);
  line-height: 1;
}

.pcard__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9333ea;
}

.pcard__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 18px;
}

.pcard__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pcard__industry {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Card positions & sizes */
.pcard--1 {
  width: 340px;
  height: 210px;
  top: 0;
  left: 40px;
  transform: rotate(-4deg);
}

.pcard--2 {
  width: 340px;
  height: 210px;
  top: 0;
  right: 40px;
  transform: rotate(4deg);
}

.pcard--3 {
  width: 480px;
  height: 300px;
  top: 170px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
}

.pcard--4 {
  width: 340px;
  height: 210px;
  bottom: 0;
  left: 40px;
  transform: rotate(3deg);
}

.pcard--5 {
  width: 340px;
  height: 210px;
  bottom: 0;
  right: 40px;
  transform: rotate(-3deg);
}

/* Glow on hover */
.pcard__glow {
  position: absolute;
  inset: -3px;
  border-radius: 17px;
  box-shadow: 0 0 40px 10px rgba(147, 51, 234, 0.55);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

/* ---- Portfolio more button ---- */
.portfolio-more {
  display: none;
  justify-content: center;
  margin-top: 48px;
  padding: 0 20px;
}

/* ---- Portfolio cards responsive ---- */
@media (max-width: 1024px) {
  .portfolio-section {
    overflow: hidden;
  }

  /* Reset transform pcard--3 fara !important ca sa poata GSAP anima */
  .portfolio-cards .pcard--3 {
    transform: none;
    left: auto;
  }

  /* Inclinare finala dupa animatie */
  .pcard--1 { --final-rot: -2deg; }
  .pcard--2 { --final-rot: 2deg; }
  .pcard--3 { --final-rot: -1deg; }
  .pcard--4 { --final-rot: 1.5deg; }
  .pcard--5 { --final-rot: -1.5deg; }

  .portfolio-cards {
    position: relative !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
    margin-top: 60px;
  }

  .pcard--1,
  .pcard--2,
  .pcard--3,
  .pcard--4,
  .pcard--5 {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    height: 360px !important;
  }

  .pcard__image {
    flex: none !important;
    height: 280px !important;
  }

  .pcard--4,
  .pcard--5 {
    display: none;
  }

  .portfolio-more {
    display: flex;
  }
}

@media (max-width: 480px) {
  .portfolio-cards {
    padding: 0 16px;
    gap: 12px;
  }

  .pcard--1,
  .pcard--2,
  .pcard--3,
  .pcard--4,
  .pcard--5 {
    height: 300px !important;
  }

  .pcard__image {
    flex: none !important;
    height: 220px !important;
  }

  .pcard__number {
    font-size: 48px;
  }
}

/* =====================
   PROVOCARI SECTION
   ===================== */
.provocari-section {
  padding-top: var(--section-gap);
}

.provocari-heading {
  line-height: 1.2;
  max-width: 600px;
}

.provocari-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  text-align: center;
}

/* Provocari Cards */
.prov-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.prov-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.38) 0%, transparent 70%);
  overflow: hidden;
  isolation: isolate;
}

.prov-card__image {
  height: 280px;
  background: rgba(10, 8, 20, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.prov-card__img-label {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(245, 242, 250, 0.25);
}

.prov-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.prov-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  text-align: center;
}

.prov-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  opacity: 0.85;
  text-align: center;
}

.prov-card__accent {
  color: #9333ea;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .prov-cards {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .prov-card__body {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .prov-cards {
    padding: 0 16px;
    gap: 12px;
  }

  .prov-card__image {
    height: 200px;
  }
}

/* =====================
   CINE SUNTEM SECTION
   ===================== */
.cine-section {
  padding-top: var(--section-gap);
  padding-bottom: 80px;
}

/* =====================
   CINE CONTENT
   ===================== */
.cine-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 40px;
}

/* Team Cards */
.team-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.38) 0%, transparent 70%);
  isolation: isolate;
  position: relative;
  cursor: pointer;
}

.cine-content-wrapper {
  perspective: 1200px;
}

.team-card__glow {
  position: absolute;
  inset: -3px;
  border-radius: 19px;
  box-shadow: 0 0 40px 10px rgba(147, 51, 234, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.team-card__notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 6px;
  background: rgba(245, 242, 250, 0.15);
  border-radius: 100px;
  z-index: 1;
}

.team-card__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(10, 8, 20, 0.7);
  border-radius: 16px 16px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-shrink: 0;
}

.team-card__initial {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 96px;
  color: rgba(245, 242, 250, 0.5);
  line-height: 1;
}

.team-card__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9333ea;
}

.team-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(245, 242, 250, 0.08);
}

.team-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.team-card__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card__role {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.team-card__bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  text-align: center;
}

.team-card__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.team-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 250, 0.15);
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.team-card__social:hover {
  color: var(--text-primary);
  border-color: rgba(245, 242, 250, 0.3);
}

/* Cine text center */
.cine-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding-top: 80px;
  text-align: center;
}

.cine-text__divider {
  width: 40px;
  height: 2px;
  background: #9333ea;
  opacity: 0.5;
}

.cine-text__paragraph {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 400px;
}

.cine-text__paragraph strong {
  color: var(--text-primary);
  font-weight: 700;
}

.cine-text__accent {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #9333ea;
}

.cine-text__signature {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .cine-content {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }

  .cine-text {
    padding-top: 0;
    order: -1;
  }
}

@media (max-width: 640px) {
  .cine-content {
    padding: 0 16px;
  }

  .team-card__image {
    aspect-ratio: 4 / 3;
    max-height: 200px;
  }
}

/* =====================
   SERVICII SECTION
   ===================== */
.servicii-section {
  padding-top: var(--section-gap);
}

.section-heading__accent-serif {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: #9333ea;
}

.servicii-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  max-width: 550px;
}

@media (max-width: 480px) {
  .servicii-paragraph { font-size: 15px; }
}

/* =====================
   SERVICES LIST
   ===================== */
.services-list {
  width: 100%;
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.12);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(147, 51, 234, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-item:hover::before {
  opacity: 1;
}

.service-item__number {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  color: #9333ea;
  min-width: 28px;
  flex-shrink: 0;
}

.service-item__name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 180px;
  flex-shrink: 0;
}

.service-item__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.service-item__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  margin-left: auto;
}

.service-item__dot {
  display: none;
}

.service-item__arrow {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-item:hover .service-item__arrow {
  color: var(--text-primary);
  transform: translateX(4px);
}

.services-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .services-list {
    padding: 0 20px;
  }

  .service-item {
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    padding: 20px 20px 20px;
  }

  .service-item__number {
    flex-shrink: 0;
  }

  .service-item__name {
    min-width: unset;
    font-size: 18px;
    flex: 1;
  }

  .service-item__cta {
    margin-left: 0;
  }

  .service-item__desc {
    width: 100%;
    flex: none;
    order: 4;
    padding-left: 0;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .services-list {
    padding: 0 16px;
    gap: 10px;
  }

  .service-item {
    padding: 18px;
  }

  .service-item__name {
    font-size: 16px;
  }

  .service-item__desc {
    font-size: 14px;
  }
}

/* =====================
   PRETURI SECTION
   ===================== */
.preturi-section {
  padding-top: var(--section-gap);
}

/* =====================
   PRICING CARDS
   ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 40px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.38) 0%, transparent 70%);
  position: relative;
}

.pricing-card--featured {
  border-color: rgba(147, 51, 234, 0.5);
  box-shadow: 0 0 40px 4px rgba(147, 51, 234, 0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #9333ea;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.pricing-card__subtitle {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-card__de-la {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-card__amount {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-card__divider {
  height: 1px;
  background: rgba(245, 242, 250, 0.08);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  align-self: stretch;
}

.pricing-card__features li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 24px;
  position: relative;
}

.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #9333ea;
  border-bottom: 2px solid #9333ea;
  transform: rotate(-45deg);
}

.pricing-accent {
  color: #9333ea;
  font-weight: 600;
}

.pricing-card__footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(245, 242, 250, 0.06);
  padding-top: 16px;
}

.pricing-card__footer p {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-card__footer em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

.pricing-card__footer strong {
  color: var(--text-primary);
  font-weight: 600;
}

.pricing-card__btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    padding: 0 16px;
  }
}

/* =====================
   TESTIMONIALE SECTION
   ===================== */
.testimoniale-section {
  padding-top: var(--section-gap);
}

.testimoniale-section .section-heading__accent-serif {
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 800;
}

/* =====================
   TESTIMONIALE SWIPER
   ===================== */
.testimoniale-swiper-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1300px;
  margin: 60px auto 0;
  padding: 0 40px;
}

.testimoniale-swiper {
  flex: 1;
  overflow: hidden;
}

.testi-nav-mobile {
  display: none;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  flex-shrink: 0;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.testi-nav:hover {
  color: var(--text-primary);
  border-color: rgba(245, 242, 250, 0.3);
}

.testi-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 28px 28px;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.12);
  background: radial-gradient(ellipse 90% 60% at 50% 100%, rgba(147, 51, 234, 0.38) 0%, transparent 70%);
  height: 100%;
}

.testi-card__quote-mark {
  font-family: 'Instrument Serif', serif;
  font-size: 64px;
  line-height: 0.6;
  color: rgba(147, 51, 234, 0.4);
  display: block;
}

.testi-card__text {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.7;
  flex: 1;
}

.testi-card__divider {
  height: 1px;
  background: rgba(245, 242, 250, 0.08);
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.testi-card__role {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
}

.swiper-slide {
  height: auto;
}

@media (max-width: 1024px) {
  .testimoniale-swiper-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .testimoniale-swiper-wrapper {
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    gap: 20px;
  }

  .testimoniale-swiper {
    width: 100%;
  }

  .testi-nav--prev,
  .testi-nav--next {
    display: none;
  }

    .testi-nav-mobile {
    display: flex;
    gap: 12px;
  }
}

/* =====================
   FAQ SECTION
   ===================== */
.faq-section {
  padding-top: var(--section-gap);
  padding-bottom: 120px;
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: start;
}

/* Left sticky */
.faq-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.faq-eyebrow {
  justify-content: flex-start;
}

.faq-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: left;
}

.faq-title .section-heading__accent-serif {
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 800;
}

.faq-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.faq-btn {
  flex-shrink: 0;
}

.faq-btn--mobile {
  display: none;
}

/* Right accordion */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  border: 1px solid rgba(245, 242, 250, 0.12);
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item--open {
  border-color: rgba(147, 51, 234, 0.5);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-item__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 250, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

.faq-item--open .faq-item__icon {
  background: #9333ea;
  border-color: #9333ea;
  color: #fff;
}

.faq-item__body {
  overflow: hidden;
  height: 0;
}

.faq-item--open .faq-item__body {
  height: auto;
}

.faq-item__body p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 24px 20px;
}

.faq-item__body strong {
  color: var(--text-primary);
  font-style: normal;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
  .faq-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }

  .faq-left {
    position: relative;
    top: auto;
    align-items: center;
    text-align: center;
  }

  .faq-eyebrow {
    justify-content: center;
  }

  .faq-title {
    text-align: center;
  }

  .faq-desc {
    text-align: center;
    max-width: 100%;
  }

  .faq-btn:not(.faq-btn--mobile) {
    display: none;
  }

  .faq-btn--mobile {
    display: inline-flex;
    justify-self: center;
    align-self: center;
  }
}

@media (max-width: 480px) {
  .faq-inner {
    padding: 0 16px;
  }

  .faq-item__trigger {
    font-size: 15px;
    padding: 18px 20px;
  }

  .faq-item__body p {
    padding: 0 20px 18px;
    font-size: 14px;
  }
}

/* =====================
   CONTACT SECTION
   ===================== */
.contact-section {
  padding-top: var(--section-gap);
  padding-bottom: 120px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-title .section-heading__accent-serif {
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 800;
}

.contact-divider {
  width: 48px;
  height: 2px;
  background: rgba(147, 51, 234, 0.5);
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email:hover {
  color: var(--text-primary);
}

.contact-socials {
  display: flex;
  gap: 10px;
}

/* Form */
.contact-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-form-title {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--text-primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-form__field,
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form__label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
}

.contact-form__input,
.contact-form__textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245, 242, 250, 0.2);
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  resize: vertical;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(245, 242, 250, 0.25);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-bottom-color: #9333ea;
}

/* Pills */
.contact-form__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-pill {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(245, 242, 250, 0.2);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-pill:hover,
.contact-pill.active {
  border-color: #9333ea;
  color: var(--text-primary);
  background: rgba(147, 51, 234, 0.12);
}

.contact-submit {
  align-self: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 20px;
  }

  .contact-left {
    position: relative;
    top: auto;
    align-items: center;
    text-align: center;
  }

  .contact-title {
    text-align: center;
  }

  .contact-email,
  .contact-socials {
    justify-content: center;
  }

  .contact-submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-inner {
    padding: 0 16px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* =====================
   FOOTER
   ===================== */
.site-footer {
  position: relative;
  padding-top: var(--section-gap);
  background:
    radial-gradient(circle at 12% 0%, rgba(147, 51, 234, 0.10) 0%, transparent 55%),
    radial-gradient(circle at 88% 110%, rgba(147, 51, 234, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, transparent 0%, rgba(147, 51, 234, 0.03) 100%);
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.6), transparent);
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-logo-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.footer-logo {
  height: 38px;
  width: auto;
  display: block;
  opacity: 1 !important;
  visibility: visible !important;
}

.footer-tagline {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 360px;
}

.footer-em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: #9333ea;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-email:hover {
  color: var(--text-primary);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(245, 242, 250, 0.15);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social:hover {
  background: rgba(147, 51, 234, 0.1);
  border-color: #9333ea;
  color: #9333ea;
  transform: translateY(-2px);
}

/* Nav columns */
.footer-nav {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav__heading {
  font-size: 1.15rem;
  font-weight: 700;
  color: #9333ea;
  margin-bottom: 1.2rem;
}

.footer-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav__list a,
.footer-nav__list li {
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav__list--contact {
  gap: 0.45rem;
}

.footer-contact__divider {
  height: 1px;
  background: rgba(245, 242, 250, 0.08);
  margin: 0.4rem 0;
}

.footer-nav__list--contact li:nth-child(n+3) {
  font-size: 0.88rem;
  color: rgba(245, 242, 250, 0.4);
}

.footer-nav__list a:hover {
  color: #9333ea;
}

/* Mega Wordmark */
.footer-wordmark {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: clamp(3rem, 17.5vw, 22rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  pointer-events: none;
  user-select: none;
  line-height: 0.85;
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
}

.wm-letter {
  display: inline-block;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid rgba(245, 242, 250, 0.1);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-live 2s ease-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-live {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.footer-back-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(245, 242, 250, 0.15);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.footer-back-top:hover {
  background: rgba(147, 51, 234, 0.1);
  border-color: #9333ea;
  color: #9333ea;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 20px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
    padding: 20px 16px;
    flex-direction: column;
    gap: 16px;
  }

  .footer-meta {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ---- Font overrides mobile only ---- */
@media (max-width: 480px) {
  .hero-h1 { font-size: clamp(30px, 11vw, 48px); }
  .hero-h2 { font-size: clamp(22px, 7vw, 36px); }
}

/* =====================
   TYPOGRAPHY SYSTEM
   ===================== */

/* Eyebrows */
.eyebrow {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}

/* Paragraphs */
p {
  font-family: 'Inter', sans-serif;
}

/* =====================
   CS — SERVICII COLAB (clase independente)
   ===================== */
.cs-section {
  padding-top: var(--section-gap);
  padding-bottom: 80px;
}

.cs-heading {
  font-family: 'Inter', sans-serif;
}

.cs-paragraph {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: center;
  max-width: 480px;
}

.cs-list {
  width: 100%;
  max-width: 1300px;
  margin: 48px auto 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(245, 242, 250, 0.12);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cs-item::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(147, 51, 234, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cs-item:hover::before { opacity: 1; }

.cs-item__name {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  min-width: 180px;
  flex-shrink: 0;
}

.cs-item__desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
  max-width: 500px;
  margin: 0 auto;
}

.cs-item__number {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 40px;
  color: #9333ea;
  flex-shrink: 0;
  line-height: 1;
  margin-left: auto;
}

.cs-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .cs-list { padding: 0 20px; }
  .cs-item { flex-wrap: wrap; gap: 8px 12px; padding: 20px; }
  .cs-item__name { min-width: unset; font-size: 18px; flex: 1; }
  .cs-item__number { order: 2; font-size: 36px; margin-left: auto; }
  .cs-item__desc { width: 100%; flex: none; order: 3; margin: 16px 0 0; max-width: 100%; }
}

@media (max-width: 480px) {
  .cs-list { padding: 0 16px; gap: 10px; }
  .cs-item { padding: 18px; }
  .cs-item__name { font-size: 16px; }
  .cs-item__desc { font-size: 14px; }
  .cs-item__number { font-size: 30px; }
}
