/* ══════════════════════════════════════════
   DESIGN TOKENS — viral-media.pl
   ══════════════════════════════════════════ */
:root {
  --bg:        #060608;
  --card:      #0f1117;
  --card-alt:  #0b0c12;
  --text:      #f4f4f5;
  --muted:     #a8adb7;
  --line:      #1d2029;
  --orange:    #ff6b3d;
  --orange2:   #ffb347;
  --accent:    linear-gradient(135deg, #ff6b3d, #ffb347);
  --radius:    16px;
  --font:      'Space Grotesk', 'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg) !important;
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
  position: relative;
  overflow-x: hidden;
}

.section { background: var(--bg); }

/* force light typography (override WP/plugin defaults) */
.hero, .section, .footer { color: var(--text) !important; }
.hero h1, .hero h2, .hero h3,
.section h1, .section h2, .section h3, .section h4,
.section p, .section li, .section span, .section label,
.footer, .footer span, .footer p {
  color: var(--text) !important;
}
.section-label, .client-tag, .pkg-name, .contact-item .label, .label { color: var(--muted) !important; }
a { color: inherit; }


/* ambient glow blobs (inspired by ultimateeditors.com) */
body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  width: 640px;
  height: 640px;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
body::before {
  left: -220px;
  top: -140px;
  background: radial-gradient(circle at 30% 30%, rgba(255,107,61,0.85), transparent 60%);
}
body::after {
  right: -240px;
  bottom: -180px;
  background: radial-gradient(circle at 60% 40%, rgba(255,179,71,0.8), transparent 60%);
}

.hero, .section, .footer, .person-bar, .person-msg { position: relative; z-index: 1; }

/* ── PAGE BREAK RULES ── */
@media print {
  body { background: var(--bg) !important; }
  .no-break, .pkg, .step-card, .stat-card, .studio-card, .project-card, .onb-step, .feature-row {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  .section { page-break-inside: avoid; break-inside: avoid; }
  h2, h3 { page-break-after: avoid; break-after: avoid; }
  .person-bar, .hero { page-break-after: avoid; break-after: avoid; }
  .packages-grid { page-break-inside: avoid; break-inside: avoid; }
}

/* ── PERSONALIZATION BAR ── */
.person-bar {
  background: linear-gradient(90deg, #ff6b3d, #ffb347);
  color: #111;
  padding: 14px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  page-break-inside: avoid;
  break-inside: avoid;
}
.person-bar .right { font-weight: 400; opacity: 0.75; font-size: 12px; }

/* ── PERSONAL MESSAGE ── */
.person-msg {
  background: #0f1117;
  border-left: 3px solid var(--orange);
  padding: 16px 48px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  page-break-inside: avoid;
  break-inside: avoid;
}

/* ── HERO ── */
.hero {
  padding: 56px 48px 48px;
  background: radial-gradient(ellipse 70% 50% at 80% 20%, rgba(255,107,61,0.13) 0%, transparent 60%),
              var(--bg);
  text-align: center;
  page-break-inside: avoid;
  break-inside: avoid;
}
.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 600;
}
.hero h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .lead {
  color: var(--muted);
  max-width: 560px;
  font-size: 16px;
  margin: 0 auto 32px;
}
.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 12px;
  color: var(--muted);
}

/* ── SECTIONS ── */
.section {
  padding: 48px 48px;
  border-top: 1px solid var(--line);
}
.section:last-child { border-bottom: 1px solid var(--line); }

.section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 600;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 32px;
  color: var(--text);
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  page-break-inside: avoid;
  break-inside: avoid;
}
.step-num {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #ff6b3d, #ffb347);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #111;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--muted); }

/* ── PACKAGES ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  page-break-inside: avoid;
  break-inside: avoid;
}
.pkg {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  page-break-inside: avoid;
  break-inside: avoid;
}
.pkg.highlighted {
  background: radial-gradient(circle at top right, rgba(255,107,61,0.18), transparent 55%), var(--card);
  border-color: var(--orange);
}
.pkg-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b3d, #ffb347);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.pkg-name {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
  font-weight: 600;
}
.pkg-price {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 2px;
}
.pkg-period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 14px;
}
.pkg-desc {
  font-size: 13px;
  color: var(--muted);
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.features { list-style: none; }
.features li {
  font-size: 13px;
  color: var(--muted);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.features li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── STUDIOS ── */
.studios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.studio-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  page-break-inside: avoid;
  break-inside: avoid;
}
.studio-city {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 6px; font-weight: 600;
}
.studio-name { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.studio-price { font-size: 26px; font-weight: 700; margin-bottom: 8px; }
.studio-price small { font-size: 14px; font-weight: 400; color: var(--muted); }
.studio-desc { font-size: 13px; color: var(--muted); }

/* ── STATS ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  page-break-inside: avoid;
  break-inside: avoid;
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #ff6b3d, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--muted); }

/* ── CLIENTS TICKER ── */
.clients-ticker-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 28px;
}
.clients-ticker-wrap::before,
.clients-ticker-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2; pointer-events: none;
}
.clients-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--card-alt), transparent); }
.clients-ticker-wrap::after  { right: 0; background: linear-gradient(to left, var(--card-alt), transparent); }

.clients-ticker {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.clients-ticker:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 20px 10px 10px;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.client-pill:hover { border-color: var(--orange); background: #151820; }
.client-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: radial-gradient(circle at top right, rgba(255,107,61,0.3), var(--card-alt));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.client-avatar img { width: 100%; height: 100%; object-fit: cover; }
.client-info { display: flex; flex-direction: column; gap: 2px; }
.client-name { font-size: 14px; font-weight: 600; color: var(--text); }
.client-subs {
  font-size: 12px; color: var(--orange); font-weight: 500;
  display: flex; align-items: center; gap: 4px;
}
.client-tag { font-size: 10px; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  page-break-inside: avoid;
  break-inside: avoid;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,61,0.45);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,107,61,0.12) inset;
}
.service-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.service-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 107, 61, 0.35);
  background: rgba(255, 107, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }
.service-card h3 { font-size: 15px; font-weight: 700; margin: 0; }
.service-card p  { font-size: 13px; color: var(--muted); margin-top: 10px; }
.service-bullets { list-style: none; margin-top: 12px; }
.service-bullets li { font-size: 13px; color: var(--muted); padding: 6px 0; display: flex; gap: 8px; }
.service-bullets li::before { content: '•'; color: var(--orange); font-weight: 800; }

/* ── TIMELINE ── */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.tl-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  page-break-inside: avoid;
  break-inside: avoid;
}
.tl-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ff6b3d, #ffb347);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 10px;
}
.tl-step h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.tl-step p  { font-size: 12px; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  column-count: 3;
  column-gap: 16px;
}
.testimonial {
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  page-break-inside: avoid;
  break-inside: avoid;
  transform: translateY(0);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.testimonial:hover {
  border-color: rgba(255,179,71,0.45);
  box-shadow: 0 12px 44px rgba(0,0,0,0.5);
}
.testimonial:nth-child(2) { transform: translateY(10px); }
.testimonial:nth-child(3) { transform: translateY(-8px); }
.testimonial:nth-child(4) { transform: translateY(16px); }
.testimonial:nth-child(5) { transform: translateY(-4px); }
.t-quote { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: radial-gradient(circle at top right, rgba(255,107,61,0.3), var(--card-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.t-avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-name { font-weight: 700; font-size: 13px; }
.t-role { font-size: 11px; color: var(--muted); }

/* ── STUDIO SPACE ── */
.space-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.space-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  page-break-inside: avoid;
  break-inside: avoid;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.space-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,107,61,0.35);
  box-shadow: 0 16px 56px rgba(0,0,0,0.5);
}
.space-img {
  height: 180px;
  background: linear-gradient(135deg, rgba(255,107,61,0.18), rgba(255,179,71,0.08)), var(--card-alt);
}
.space-body { padding: 22px; }
.space-city { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; font-weight: 700; }
.space-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.space-desc { font-size: 13px; color: var(--muted); }
.space-note { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); }

/* ── CONTACT FORM ── */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; align-items: start; }
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }
.input, .textarea {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 12px;
  color: var(--text);
  outline: none;
  font-family: var(--font);
}
.textarea { min-height: 120px; resize: vertical; }
.input:focus, .textarea:focus { border-color: rgba(255,107,61,0.6); }
.btn {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,107,61,0.45);
  background: rgba(255,107,61,0.14);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

/* ── FAQ ── */
.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq details { border-top: 1px solid var(--line); padding: 16px 18px; }
.faq details:first-child { border-top: 0; }
.faq summary { cursor: pointer; font-weight: 700; font-size: 13px; }
.faq p { margin-top: 10px; color: var(--muted); font-size: 13px; }

/* ── ONBOARDING ── */
.onb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.onb-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  page-break-inside: avoid;
  break-inside: avoid;
}
.onb-icon { font-size: 24px; margin-bottom: 10px; }
.onb-step h4 { font-size: 13px; font-weight: 600; margin-bottom: 6px; }
.onb-step p  { font-size: 12px; color: var(--muted); }

/* ── CTA ── */
.cta-section {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(255,107,61,0.14), transparent 70%), var(--card);
  padding: 56px 48px;
  text-align: center;
  border-top: 1px solid var(--line);
  page-break-inside: avoid;
  break-inside: avoid;
}
.cta-section h2 { font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.cta-section p  { color: var(--muted); font-size: 15px; margin-bottom: 32px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-contacts {
  display: flex; gap: 40px; justify-content: center; flex-wrap: wrap;
}
.contact-item .label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.contact-item .val { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-item .val span { color: var(--orange); }

/* ── FOOTER ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 18px;
  font-size: 11px;
  color: #555;
}

/* ── NOTE ── */
.note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.02);
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  page-break-inside: avoid;
  break-inside: avoid;
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
  border: 2px solid var(--orange);
}
.team-avatar-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at top right, rgba(255,107,61,0.3), transparent 70%), #1a1d28;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  flex-shrink: 0;
}
.team-avatar-ai {
  background: radial-gradient(circle at top right, rgba(107,61,255,0.3), transparent 70%), #1a1d28;
  border-color: #a78bfa;
  color: #a78bfa;
  font-size: 28px;
}
.team-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
  font-weight: 600;
}
.team-role-ai { color: #a78bfa; }
.team-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.team-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.team-tag {
  margin-top: 12px;
  display: inline-block;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--muted);
}
.team-tag-premium {
  border-color: #a78bfa;
  color: #a78bfa;
  background: rgba(167,139,250,0.06);
}
