/* ==========================================================================
   OPUS CINEMATIC — stylesheet
   Cinematic dark & moody theme
   ========================================================================== */

:root {
  --bg: #0a0908;
  --bg-alt: #121009;
  --surface: #17140f;
  --surface-2: #1d1911;
  --border: rgba(232, 216, 180, 0.12);
  --border-strong: rgba(232, 216, 180, 0.22);
  --text: #f3ede1;
  --text-muted: #b7ac97;
  --text-dim: #7d7563;
  --gold: #c9a24a;
  --gold-bright: #e9c877;
  --gold-dim: #8a6f35;
  --overlay: rgba(10, 9, 8, 0.6);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  --container: 1180px;
  --container-narrow: 760px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* , *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--text);
}

p { margin: 0 0 1em; color: var(--text-muted); }

.italic-accent {
  font-style: italic;
  color: var(--gold-bright);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container.narrow { max-width: var(--container-narrow); }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 820px;
}

.section-sub {
  max-width: 620px;
  font-size: 17px;
  margin-top: -8px;
  margin-bottom: 40px;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* ---------- grain overlay ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14110a;
  box-shadow: 0 8px 24px -8px rgba(201, 162, 74, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(201, 162, 74, 0.7); }

.btn-outline {
  border-color: var(--border-strong);
  color: var(--text);
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-ghost {
  color: var(--gold-bright);
  padding-left: 4px;
  padding-right: 4px;
  border-bottom: 1px solid var(--gold-dim);
  border-radius: 0;
}
.btn-ghost:hover { border-color: var(--gold-bright); }

.btn-block { width: 100%; }

.btn-whatsapp {
  border-color: rgba(63, 207, 110, 0.4);
  color: var(--text);
  background: rgba(63, 207, 110, 0.08);
  margin: 24px 0 32px;
}
.btn-whatsapp svg { color: #3fcf6e; }
.btn-whatsapp:hover { border-color: #3fcf6e; background: rgba(63, 207, 110, 0.14); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.03em;
  color: var(--gold-bright);
}

.logo-text {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: 0.18em;
  color: var(--text);
}
.logo-text em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.32em;
  color: var(--text-dim);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after { right: 0; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-cta { padding: 12px 22px; }

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s;
}
.header-phone svg { color: var(--gold); flex-shrink: 0; }
.header-phone:hover { color: var(--gold-bright); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s var(--ease);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,162,74,0.14), transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(201,162,74,0.10), transparent 50%),
    linear-gradient(180deg, #0d0b09 0%, #0a0908 60%, #0a0908 100%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(201,162,74,0.10) 0%, transparent 65%);
  filter: blur(10px);
}

.film-strip {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 46px;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(232,216,180,0.10) 0px,
    rgba(232,216,180,0.10) 18px,
    transparent 18px,
    transparent 40px
  );
  opacity: 0.5;
}
.film-strip-left { left: 0; }
.film-strip-right { right: 0; }

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

.hero-title {
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.01em;
  max-width: 900px;
}

.hero-sub {
  max-width: 560px;
  font-size: 18px;
  margin-top: 24px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 48px;
  margin-top: 90px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.hero-meta-item { display: flex; flex-direction: column; gap: 6px; max-width: 220px; }
.hero-meta-item .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-bright);
}
.hero-meta-item .lbl {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.03em;
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 10px 18px 10px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  font-size: 13px;
  color: var(--text);
  background: rgba(232, 216, 180, 0.04);
  transition: all 0.3s var(--ease);
}
.whatsapp-badge:hover { border-color: var(--gold); background: rgba(232, 216, 180, 0.08); }
.whatsapp-badge svg { color: #3fcf6e; flex-shrink: 0; }
.whatsapp-badge strong { color: var(--gold-bright); font-weight: 500; }
.whatsapp-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fcf6e;
  box-shadow: 0 0 0 rgba(63, 207, 110, 0.6);
  animation: whatsapp-pulse 2s infinite;
}
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(63, 207, 110, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(63, 207, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 207, 110, 0); }
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold-bright);
  animation: scroll-cue 2s infinite;
}
@keyframes scroll-cue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 18px; }
  100% { opacity: 0; top: 18px; }
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   DESPRE
   ========================================================================== */
.despre-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}

.despre-text p { font-size: 16px; }

.despre-values { display: flex; flex-direction: column; gap: 28px; }
.value-item {
  padding: 24px 0 24px 0;
  border-top: 1px solid var(--border);
}
.value-item:first-child { border-top: none; padding-top: 0; }
.value-icon {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
}
.value-item h3 { font-size: 19px; margin-bottom: 6px; }
.value-item p { font-size: 14px; margin: 0; }

.credentials-strip {
  margin-top: 56px;
  padding: 28px 36px;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.credentials-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  max-width: 260px;
}
.credentials-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.credentials-logos span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: var(--gold-bright);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   EVENIMENTE ACOPERITE
   ========================================================================== */
.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.event-tag {
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}
.event-tag:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}

/* ==========================================================================
   SERVICII
   ========================================================================== */
.audience-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--border);
  border-radius: 40px;
  margin-bottom: 48px;
}
.tab-btn {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: 40px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.tab-btn.is-active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14110a;
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade-in 0.5s var(--ease); }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

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

.service-card {
  background: var(--bg);
  padding: 40px 30px;
  transition: background 0.4s var(--ease);
}
.service-card:hover { background: var(--surface); }

.service-icon {
  width: 44px;
  height: 44px;
  color: var(--gold-bright);
  margin-bottom: 24px;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { font-size: 14px; margin: 0; }

/* ==========================================================================
   COLABORARE VIDEOGRAFI
   ========================================================================== */
.collab-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  margin-top: 48px;
  align-items: start;
}

.collab-steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.collab-steps li {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
}
.collab-steps li:first-child { border-top: none; padding-top: 0; }
.collab-steps h3 { font-size: 18px; margin-bottom: 6px; }
.collab-steps p { font-size: 14px; margin: 0 0 8px; }

.step-duration {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  padding: 4px 12px;
}

.collab-side { display: flex; flex-direction: column; gap: 24px; }
.collab-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 32px;
}
.collab-card h3 { font-size: 18px; margin-bottom: 18px; }
.collab-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.collab-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.collab-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.collab-card-price { border-color: var(--gold-dim); }
.collab-price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.collab-price-row:first-of-type { border-top: none; padding-top: 0; }
.collab-price-row span:last-child {
  color: var(--gold-bright);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
  white-space: nowrap;
}
.collab-card-price .btn { margin-top: 16px; }

.inline-link {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold-dim);
}
.inline-link:hover { border-color: var(--gold-bright); }

/* ==========================================================================
   PARTENERIAT
   ========================================================================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.partner-card {
  background: var(--bg);
  padding: 36px 30px;
  transition: background 0.4s var(--ease);
}
.partner-card:hover { background: var(--surface); }
.partner-num {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
}
.partner-card h3 { font-size: 18px; margin-bottom: 10px; }
.partner-card p { font-size: 14px; margin: 0; }

.partner-cta {
  margin-top: 48px;
  padding: 40px 48px;
  border: 1px solid var(--gold-dim);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.partner-cta p {
  margin: 0;
  font-size: 14px;
  max-width: 460px;
  color: var(--text-muted);
}

/* ==========================================================================
   PACHETE / PRICING
   ========================================================================== */
.format-note {
  max-width: 720px;
  font-size: 14px;
  margin-top: -16px;
  margin-bottom: 40px;
  color: var(--text-muted);
}
.format-note strong { color: var(--gold-bright); font-weight: 500; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 44px 34px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }

.price-card.is-featured {
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border-color: var(--gold-dim);
  transform: scale(1.03);
}
.price-card.is-featured:hover { transform: scale(1.03) translateY(-6px); }

.price-badge {
  position: absolute;
  top: -13px;
  left: 34px;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14110a;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.trust-badges .launch-badge { margin-bottom: 0; }

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 20px;
  padding: 6px 14px;
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  background: rgba(201, 162, 74, 0.12);
  color: var(--gold-bright);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.launch-badge-sm {
  margin: 0 0 0 10px;
  padding: 3px 10px;
  font-size: 9px;
  vertical-align: middle;
}
.payment-badge {
  border-color: rgba(63, 207, 110, 0.4);
  background: rgba(63, 207, 110, 0.1);
  color: #3fcf6e;
}

.price-name { font-size: 24px; margin-bottom: 6px; }
.price-desc { font-size: 14px; min-height: 42px; }
.price-value {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.price-value span {
  font-size: 38px;
  color: var(--gold-bright);
  font-style: italic;
  margin-left: 4px;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px 0;
  border-top: 1px solid var(--border);
  padding-left: 22px;
  position: relative;
}
.price-features li:first-child { border-top: none; }
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.b2b-pricing {
  margin-top: 64px;
  padding: 44px 48px;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--surface);
}
.b2b-pricing-text h3 { font-size: 22px; margin-bottom: 8px; }
.b2b-pricing-text p { font-size: 14px; margin: 0; max-width: 460px; }

/* ==========================================================================
   PRICE TABLE (pe tip de eveniment)
   ========================================================================== */
.price-value-sub {
  margin: -20px 0 26px;
  font-size: 12px;
  color: var(--text-dim);
}

.price-table-wrap {
  margin-top: 56px;
  padding: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.price-table-title {
  font-size: 22px;
  margin-bottom: 24px;
}
.price-table-scroll {
  overflow-x: auto;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.price-table th,
.price-table td {
  text-align: left;
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  font-size: 14px;
  white-space: nowrap;
}
.price-table thead th {
  border-top: none;
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 400;
  padding-bottom: 16px;
}
.price-table thead th span {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
  font-size: 11px;
  margin-top: 4px;
}
.price-table tbody td:first-child {
  color: var(--text);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  white-space: normal;
}
.price-table tbody td:not(:first-child) {
  color: var(--gold-bright);
}
.price-table tbody tr:hover { background: rgba(232, 216, 180, 0.04); }

.price-table-note {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 720px;
}

.note-text {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
}

/* ==========================================================================
   PROCES
   ========================================================================== */
.process-steps {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  flex-direction: column;
}
.process-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  align-items: flex-start;
}
.process-step:last-child { border-bottom: 1px solid var(--border); }
.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 30px;
  color: var(--gold);
  min-width: 56px;
}
.process-step h3 { font-size: 19px; margin-bottom: 4px; }
.process-step p { font-size: 14px; margin: 0; }

/* ==========================================================================
   TESTIMONIALE
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  margin: 0;
  padding: 32px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.testimonial-card p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text);
}
.testimonial-card cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gold);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.accordion { margin-top: 40px; }
.accordion-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.accordion-item:last-child { border-bottom: 1px solid var(--border); }
.accordion-item summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.accordion-item[open] summary::after { transform: rotate(45deg); }
.accordion-item p { margin: 14px 0 0; font-size: 14px; max-width: 640px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
}

.contact-intro p { font-size: 16px; }

.contact-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.cd-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); }
.cd-value { font-size: 15px; color: var(--text); }

.contact-form {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 14px;
  font-family: var(--font-sans);
  font-size: 14px;
  border-radius: 2px;
  transition: border-color 0.3s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 24px;
  cursor: pointer;
}
.form-consent input { margin-top: 3px; }

.form-status {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
}
.form-status.success { color: var(--gold-bright); }
.form-status.error { color: #e08a6b; }

.form-alt-contact {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-dim);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 64px;
  background: var(--bg-alt);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p { font-size: 13px; max-width: 320px; margin-top: 14px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--gold-bright);
}
.footer-phone svg { color: #3fcf6e; }
.footer-phone:hover { color: var(--text); }

.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { font-size: 13px; color: var(--text-muted); }
.footer-nav a:hover { color: var(--gold-bright); }

.footer-social { display: flex; gap: 14px; align-items: flex-start; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 32px;
}
.footer-bottom p { font-size: 12px; color: var(--text-dim); margin: 0; }

/* ==========================================================================
   FLOATING CTA
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 400;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #14110a;
  padding: 14px 22px;
  border-radius: 40px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 10px 30px -8px rgba(201, 162, 74, 0.6);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.4s var(--ease);
}
.floating-cta.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 400;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #0a0908;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease);
}
.floating-whatsapp:hover { transform: scale(1.08); }
.floating-whatsapp-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: whatsapp-ring 2.2s infinite;
}
@keyframes whatsapp-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav, .nav-cta, .header-phone { display: none; }
  .nav-toggle { display: flex; }

  .despre-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.is-featured { transform: none; }
  .price-card.is-featured:hover { transform: translateY(-6px); }
  .b2b-pricing { flex-direction: column; align-items: flex-start; text-align: left; }
  .collab-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .price-table-wrap { padding: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .hero { padding-top: 110px; }
  .hero-meta { gap: 28px; margin-top: 56px; }
  .services-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .floating-cta { right: 16px; bottom: 16px; padding: 12px 18px; font-size: 11px; }
  .floating-whatsapp { left: 16px; bottom: 16px; width: 50px; height: 50px; }
  .film-strip { display: none; }
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--bg-alt);
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    z-index: 600;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a { font-size: 16px; }

  .nav-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}
