/* ============================================================
   BRANDING PAGE — specific styles
   ============================================================ */

/* ── BUTTON OVERRIDES — no gradient ── */
.btn-primary {
  background: var(--magenta);
  box-shadow: 0 8px 24px rgba(237,0,140,0.3);
}
.btn-primary:hover {
  background: #ff169f;
  box-shadow: 0 8px 28px rgba(237,0,140,0.45);
  transform: translateY(-2px);
}

/* ── HERO VIDEO 1:1 ── */
.branding-hero {
  background: #000;
}
.branding-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.branding-hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.branding-hero-video-wrap {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 60px rgba(237,0,140,0.15);
}

#brandingMuteBtn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(4px);
}
#brandingMuteBtn:hover { background: rgba(237,0,140,0.7); border-color: var(--magenta); }

.branding-hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ── SERVICE ROWS ── */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 20px 0;
}

.svc-row--reverse {
  direction: rtl;
}

.svc-row--reverse > * {
  direction: ltr;
}

/* ── VISUAL PLACEHOLDER CONTAINERS ── */
.svc-placeholder {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.svc-ph-inner {
  width: 100%;
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* SEE GALLERY button */
.ph-gallery-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  margin: 0 0 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  background: transparent;
}

.ph-gallery-btn:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

/* ── IDENTITY PLACEHOLDER ── */
.ph-logo-mock {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ph-logo-mark {
  font-size: 40px;
  color: var(--magenta);
  line-height: 1;
}

.ph-logo-text {
  display: flex;
  flex-direction: column;
}

.ph-logo-name {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.ph-logo-tag {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

.ph-slogan {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  border-left: 2px solid var(--magenta);
  padding-left: 12px;
}

.ph-sig {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── BRAND BOOK PLACEHOLDER ── */
.ph-bb-colors {
  display: flex;
  gap: 10px;
}

.ph-bb-colors span {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.ph-bb-fonts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ph-f1 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
}

.ph-f2 {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.ph-bb-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 6px;
}

/* ── WEB PLACEHOLDER ── */
.ph-browser {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}

.ph-browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.ph-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-block;
}

.ph-url {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  flex: 1;
  text-align: center;
}

.ph-lang-badge {
  font-size: 10px;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 0.05em;
}

.ph-browser-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ph-hero-block {
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(237,0,140,0.2), rgba(0,212,255,0.1));
}

.ph-content-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ph-row {
  height: 10px;
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
}
.ph-row--wide { width: 90%; }
.ph-row--med  { width: 65%; }
.ph-row--short{ width: 40%; }

/* ── UI PLACEHOLDER ── */
.ph-ui-frame {
  width: 100%;
  height: 160px;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-template-rows: 28px 1fr;
  gap: 4px;
}

.ph-ui-header {
  grid-column: 1 / -1;
  background: rgba(237,0,140,0.15);
  border-radius: 6px;
}

.ph-ui-sidebar {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

.ph-ui-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ph-ui-card {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
}

/* ── PITCH DECK PLACEHOLDER ── */
.ph-deck-stack {
  position: relative;
  width: 200px;
  height: 130px;
}

.ph-slide {
  position: absolute;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}

.ph-slide--1 {
  width: 200px;
  height: 120px;
  background: rgba(255,255,255,0.06);
  z-index: 3;
  left: 0; top: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ph-slide--2 {
  width: 190px;
  height: 110px;
  background: rgba(255,255,255,0.04);
  z-index: 2;
  left: 8px; top: 8px;
}

.ph-slide--3 {
  width: 180px;
  height: 100px;
  background: rgba(255,255,255,0.02);
  z-index: 1;
  left: 16px; top: 16px;
}

.ph-slide-title {
  height: 12px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  width: 80%;
}

.ph-slide-sub {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: 4px;
  width: 50%;
}

.ph-slide-graph {
  width: 80%;
  height: 50px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, rgba(237,0,140,0.3), rgba(0,212,255,0.2));
  border-radius: 6px;
}

/* ── VIDEO PLACEHOLDER ── */
.ph-video-player {
  width: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.ph-video-screen {
  height: 130px;
  background: linear-gradient(135deg, rgba(10,10,20,0.9), rgba(30,10,40,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
}

.ph-play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(237,0,140,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.ph-play-btn:hover { background: var(--magenta); }

.ph-video-bar {
  height: 3px;
  background: rgba(255,255,255,0.1);
}

.ph-video-progress {
  height: 100%;
  width: 35%;
  background: var(--magenta);
}

.ph-video-labels {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
}

/* ── BOOK A CALL SECTION ── */
.body-text.centered {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.book-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Calendar mock */
.book-cal-mock {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 24px;
}

.cal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.cal-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--magenta), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.cal-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cal-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.cal-dur {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.cal-month-label {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.cal-arrow {
  background: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.cal-arrow:hover { border-color: var(--magenta); color: var(--magenta); }

.cal-grid-head {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.cal-grid-head span {
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 16px;
}

.cal-day, .cal-empty {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.25);
}

.cal-avail {
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: background 0.15s;
}

.cal-avail:hover { background: rgba(237,0,140,0.15); color: #fff; }

.cal-selected {
  background: var(--magenta) !important;
  color: #fff !important;
  font-weight: 700;
}

.cal-time-label {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.cal-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cal-slot {
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  cursor: pointer;
  transition: border-color 0.15s;
}

.cal-slot:hover { border-color: var(--magenta); color: #fff; }

.cal-slot--sel {
  background: rgba(237,0,140,0.15);
  border-color: var(--magenta);
  color: #fff;
  font-weight: 600;
}

.cal-footer-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  text-align: center;
}

/* Contact form */
.bk-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bk-label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bk-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.bk-input:focus {
  border-color: var(--magenta);
}

.bk-input::placeholder { color: rgba(255,255,255,0.2); }

.bk-select {
  appearance: none;
  cursor: pointer;
}

.bk-textarea {
  resize: vertical;
  min-height: 90px;
}

.bk-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
}

.bk-check input { accent-color: var(--magenta); width: 16px; height: 16px; }
.bk-check a { color: var(--cyan); text-decoration: none; }
.bk-check a:hover { text-decoration: underline; }

/* ── PACKAGES ── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}

.pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}

.pkg-card--featured {
  border-color: var(--magenta);
  background: linear-gradient(135deg, rgba(237,0,140,0.08), rgba(255,255,255,0.04));
}

.pkg-badge-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--magenta);
  color: #fff;
  margin-bottom: 12px;
  align-self: flex-start;
}

.pkg-tier {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.pkg-price {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}

.pkg-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  flex: 1;
}

.pkg-features li {
  padding: 8px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.pkg-features li::before {
  content: '✓';
  color: var(--magenta);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pkg-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

/* ── GALLERY LIGHTBOX ── */
.gallery-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  backdrop-filter: blur(6px);
}

.gallery-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.gallery-modal {
  background: #0f0f1a;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  width: 90vw;
  max-width: 760px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.gallery-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.5);
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.gallery-close:hover { background: rgba(237,0,140,0.2); color: #fff; }

.gallery-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.gallery-ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-ph-item {
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .section-title { font-size: clamp(42px, 12vw, 64px) !important; }
  .core-title    { font-size: clamp(48px, 14vw, 72px) !important; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .branding-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .branding-hero-video-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
  .svc-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .svc-row--reverse { direction: ltr; }
  .book-layout { grid-template-columns: 1fr; }
  .gallery-ph-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .hero-cta-row { flex-direction: column; }
  .gallery-ph-grid { grid-template-columns: 1fr; }
}


/* ── SUB-NAV (shared header menu, copied from b2g) ── */
.sub-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  padding: 5px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  margin: 0 16px;
}
.sub-nav-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-primary, inherit);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 8px 10px;
  border-radius: 10px;
  border: none;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.sub-nav-link:hover { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.07); }
.sub-nav-link.active { background: #ffffff; color: #0d0d1a; font-weight: 700; }
.sub-nav-icon { display: flex; align-items: center; justify-content: center; width: 15px; height: 15px; flex-shrink: 0; }

@media (max-width: 900px) {
  .sub-nav { display: none; }
  .site-header-bar { position: relative; }
}

/* ── SECTION DIVIDER — линијата останува, но без gradient боја ── */
.branding-page .section:not(.hero-section)::before {
  background: rgba(255,255,255,0.14);
  box-shadow: none;
}

/* ── Простор помеѓу параграф и листата со точки ── */
.branding-page .feature-bullets {
  margin-top: 22px;
}