/* ── Scroll reveal (global — works on all pages) ──────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Page hero entrance animations ────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.blog-hero     .pill,
.learn-hero    .pill,
.templates-hero .pill,
.resources-hero .pill,
.corner-hero   .pill,
.detail-hero   .pill  { animation: heroFadeUp 0.65s 0.08s ease both; }

.blog-hero     h1,
.learn-hero    h1,
.templates-hero h1,
.resources-hero h1,
.corner-hero   h1,
.detail-hero   h1    { animation: heroFadeUp 0.65s 0.22s ease both; }

.blog-hero     > .container > p,
.learn-hero    > .container > p,
.templates-hero > .container > p,
.resources-hero > .container > p,
.corner-hero   > .container > p,
.detail-hero   > .container > p { animation: heroFadeUp 0.65s 0.36s ease both; }

.blog-hero     .hero-actions,
.learn-hero    .hero-actions,
.templates-hero .hero-actions,
.resources-hero .hero-actions,
.corner-hero   .hero-actions { animation: heroFadeUp 0.65s 0.5s ease both; }

.blog-hero .hero-link    { animation: heroFadeUp 0.65s 0.5s ease both; }
.templates-hero .hero-sub,
.resources-hero .hero-sub,
.templates-hero .btn-hero-alt { animation: heroFadeUp 0.65s 0.48s ease both; }

/* Filter buttons hover */
.filter-btn,
.learn-filter-btn,
.templates-filter-btn {
  transition: background 0.2s ease, color 0.2s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.filter-btn:not(.active):hover,
.learn-filter-btn:not(.active):hover,
.templates-filter-btn:not(.active):hover {
  background: #e9d5ff;
  color: #6d28d9;
  transform: translateY(-1px);
}

.badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  background: #f3e8ff;
  color: #6d28d9;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  border: 1px solid #e9d5ff;
}
.badge i, .badge svg,
.pill  i, .pill  svg { font-size: 0.74rem; }

/* Dot indicator for section badges that carry no icon in markup */
.badge::before {
  content: '';
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
  flex-shrink: 0;
  align-self: center;
}
.badge:has(> i)::before,
.badge:has(> svg)::before { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }

/* ── Gradient (primary CTA) ── */
.btn-gradient,
.btn-gradient:visited {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-md);
}
.btn-gradient:hover,
.btn-gradient:focus,
.btn-gradient:active {
  color: #fff;
  box-shadow: 0 18px 40px rgba(236,72,153,0.35);
  filter: brightness(1.08);
}

/* ── Outline (secondary, on light bg) ── */
.btn-outline,
.btn-outline:visited {
  background: #fff;
  border: 2px solid var(--line);
  color: #374151;
}
.btn-outline:hover,
.btn-outline:focus,
.btn-outline:active { border-color: #f9a8d4; color: var(--pink); }

/* ── White (used on dark gradient CTA sections) ── */
.btn-white,
.btn-white:visited {
  color: #fff;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-md);
}
.btn-white:hover,
.btn-white:focus,
.btn-white:active {
  color: #fff;
  box-shadow: 0 18px 40px rgba(236, 72, 153, 0.35);
  filter: brightness(1.08);
}

/* ── Outline-light (used on dark gradient CTA sections) ── */
.btn-outline-light,
.btn-outline-light:visited {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: transparent;
}
.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:active { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* ── YouTube / video CTA ── */
.btn-yt,
.btn-yt:visited {
  color: #fff;
  background: #dc2626;
  box-shadow: 0 14px 30px rgba(220, 38, 38, 0.25);
}
.btn-yt:hover,
.btn-yt:focus,
.btn-yt:active { background: #b91c1c; color: #fff; }
.btn-yt i,
.btn-outline i { margin-right: 0.4rem; }

/* ── Sizes ── */
.btn-sm    { height: 2.65rem; padding: 0 1.2rem; font-size: 0.92rem; }
.btn-lg    { height: 3.4rem;  padding: 0 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; height: 3.2rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(124,58,237,0.10);
  border-bottom-color: #e9d5ff;
}

/* ── Scroll progress bar ─────────────────────────────────────── */
.scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 55%, var(--orange) 100%);
  box-shadow:
    0 0 10px rgba(236, 72, 153, 0.65),
    0 0  5px rgba(245, 166,  35, 0.45);
  will-change: transform;
  pointer-events: none;
  z-index: 1;
}

/* Desktop only — hide on tablet and mobile */
@media (max-width: 1100px) {
  .scroll-progress-bar { display: none; }
}

.navbar {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand img { height: 2.8rem; width: auto; }
.site-header .brand img { height: 4.8rem; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  flex: 1;
}
.nav-links a {
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 700;
  position: relative;
}
/* Underline slide-in on hover */
.nav-links a:not(.corner-link)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transition: width 0.28s ease;
}
.nav-links a:not(.corner-link):hover::after { width: 100%; }
.nav-links a:hover { color: #db2777; }
.nav-links a.active,
.nav-links a.is-active,
.nav-links a.current-menu-item { color: #db2777; }
.nav-links a.active::after,
.nav-links a.is-active::after,
.nav-links a.current-menu-item::after { width: 100%; }
.nav-links .corner-link {
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #f3e8ff, #ffe4e6);
  color: #7e22ce;
}
.desktop-call { flex-shrink: 0; }
.menu-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
}
.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 8px;
  background: #374151;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

/* ── Mobile menu backdrop ─────────────────────────────── */
.mobile-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(17, 24, 39, 0.48);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  display: none;
}
.mobile-backdrop.is-visible {
  display: block;
  animation: backdropIn 0.24s ease;
}
@keyframes backdropIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Mobile drawer (right-side slide-in) ──────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: min(320px, 88vw);
  background: #fff;
  box-shadow: -12px 0 50px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu:not([hidden]) {
  animation: drawerSlideIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes drawerSlideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

/* Drawer header */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--line-soft);
  flex-shrink: 0;
  background: #fff;
}
.mobile-menu-logo { height: 3rem; width: auto; }
.mobile-menu-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f9fafb;
  color: #374151;
  font-size: 1.05rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.mobile-menu-close:hover {
  background: #fce7f3;
  color: #be185d;
  border-color: #fbcfe8;
}

/* Nav links */
.mobile-menu-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.4rem;
  font-size: 0.96rem;
  font-weight: 700;
  color: #374151;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s, color 0.15s, padding-left 0.22s;
  text-decoration: none;
}
.mobile-menu-nav a::after {
  content: '\f054';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.6rem;
  color: #d1d5db;
  transition: color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.mobile-menu-nav a:hover {
  background: #fdf4ff;
  color: #7c3aed;
  padding-left: 1.8rem;
}
.mobile-menu-nav a:hover::after {
  color: #a855f7;
  transform: translateX(3px);
}
.mobile-menu-nav a.is-active,
.mobile-menu-nav a.current-menu-item {
  color: #db2777;
  background: #fdf2f8;
}
.mobile-menu-nav a.is-active::after,
.mobile-menu-nav a.current-menu-item::after { color: #f9a8d4; }

/* Creative Corner pill inside drawer */
.mobile-menu-nav .corner-link {
  margin: 0.6rem 1rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border-bottom: none;
  background: linear-gradient(120deg, #f3e8ff, #ffe4e6);
  color: #7e22ce;
  font-size: 0.9rem;
}
.mobile-menu-nav .corner-link:hover {
  background: linear-gradient(120deg, #ede9fe, #fce7f3);
  color: #6b21a8;
  padding-left: 1.3rem;
}
.mobile-menu-nav .corner-link::after { display: none; }

/* Drawer footer CTA */
.mobile-menu-footer {
  padding: 1.1rem 1.2rem 2.2rem;
  border-top: 1px solid var(--line-soft);
  flex-shrink: 0;
}
.mobile-menu-footer .btn {
  width: 100%;
  justify-content: center;
  border-radius: 14px;
  height: 3rem;
  font-size: 0.96rem;
}

.site-footer {
  padding: 3.6rem 0 1.6rem;
  background: #f9fafb;
  border-top: 1px solid var(--line);
}
/* Row 1 — logo on its own full-width row */
.footer-top {
  margin-bottom: 2rem;
}
.footer-top .brand {
  display: inline-block;
  margin-left: -1.4rem;
}
.footer-top .brand img { display: block; }

/* Row 2 — three equal columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 4.5rem;
}

/* Cap brand copy so it doesn't press the full column width */
.footer-grid > article:first-child p {
  max-width: 24rem;
}
.site-footer h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #9ca3af;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.site-footer p,
.site-footer a {
  color: #6b7280;
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.site-footer a:hover { color: #db2777; }
.site-footer a i { margin-right: 0.35rem; }
.copyright {
  margin-top: 0.8rem;
  text-align: left;
  color: #9ca3af;
  font-size: 0.85rem;
}

/* ── Book a Call modal (global) ────── */
.bk-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: bkOverlayIn 0.22s ease;
}
.bk-overlay[hidden] { display: none; }

@keyframes bkOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.bk-modal {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: min(500px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.22);
  animation: bkModalIn 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bkModalIn {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

/* Gradient banner across the top */
.bk-banner {
  background: linear-gradient(135deg, #6a0dad, #e91e8c 55%, #f5a623);
  border-radius: 24px 24px 0 0;
  padding: 2rem 2rem 1.6rem;
  text-align: center;
  color: #fff;
  position: relative;
}
.bk-banner-icon {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  margin: 0 auto 1rem;
  backdrop-filter: blur(4px);
}
.bk-banner h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.bk-banner p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 28rem;
  margin: 0 auto;
}

/* Close button */
.bk-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s;
}
.bk-close:hover { background: rgba(255, 255, 255, 0.3); }
.bk-close i { line-height: 1; }

/* Form body */
.bk-body {
  padding: 1.8rem 2rem 2rem;
  display: grid;
  gap: 1rem;
}
.bk-body .wpcf7,
.bk-body .wpcf7 form {
  width: 100%;
}
.bk-body .wpcf7 form,
.bk-body .wpcf7-form {
  display: grid;
  gap: 1rem;
  margin: 0;
}
.bk-body .wpcf7-form-control-wrap {
  display: block;
}

.bk-field,
.bk-field p {
  display: grid;
  gap: 0.32rem;
  margin: 0;
}
.bk-field br {
  display: none;
}
.bk-body .wpcf7 form > p {
  margin: 0;
}

.bk-field label {
  font-size: 0.84rem;
  font-weight: 700;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.bk-field label i { color: #7c3aed; font-size: 0.75rem; }

.bk-field input,
.bk-field textarea {
  height: 2.85rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 0 0.9rem;
  font-size: 0.93rem;
  color: #111827;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  width: 100%;
}
.bk-field textarea {
  min-height: 5.8rem;
  height: auto;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}
.bk-field input:focus,
.bk-field textarea:focus {
  outline: none;
  border-color: #a855f7;
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
  background: #fff;
}
.bk-field input.is-error,
.bk-field textarea.is-error,
.bk-field .wpcf7-not-valid {
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

.bk-err {
  font-size: 0.78rem;
  color: #ef4444;
  font-weight: 600;
  min-height: 1rem;
  display: block;
}

.bk-submit {
  width: 100%;
  height: 3.1rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #6a0dad, #e91e8c 55%, #f5a623);
  color: #fff;
  font-size: 0.97rem;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 1.2rem;
  text-align: center;
  line-height: 1;
  margin-top: 0.3rem;
  box-shadow: 0 14px 32px rgba(233, 30, 140, 0.28);
  transition: filter 0.22s, transform 0.22s, box-shadow 0.22s;
  appearance: none;
  -webkit-appearance: none;
}
.bk-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(233, 30, 140, 0.38);
}
.bk-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.bk-submit i,
.bk-submit span {
  pointer-events: none;
}
.bk-submit br {
  display: none;
}
.bk-body .wpcf7-spinner {
  display: block;
  margin: 0.2rem auto 0;
}
.bk-body .wpcf7-not-valid-tip {
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.28rem;
}
.bk-body .wpcf7-response-output {
  border-radius: 12px;
  margin: 0.2rem 0 0;
  padding: 0.8rem 0.95rem;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}
.bk-body .wpcf7 form.sent .wpcf7-response-output {
  border-color: #10b981;
  color: #047857;
  background: #ecfdf5;
}
.bk-body .wpcf7 form.invalid .wpcf7-response-output,
.bk-body .wpcf7 form.failed .wpcf7-response-output,
.bk-body .wpcf7 form.aborted .wpcf7-response-output {
  border-color: #f87171;
  color: #b91c1c;
  background: #fef2f2;
}

.bk-privacy {
  text-align: center;
  font-size: 0.76rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 0.2rem;
}
.bk-privacy i { color: #10b981; font-size: 0.72rem; }

/* Success state */
.bk-success {
  padding: 2.5rem 2rem;
  text-align: center;
  animation: bkModalIn 0.3s ease;
}
.bk-success[hidden] { display: none; }

.bk-success-icon {
  font-size: 3.8rem;
  color: #10b981;
  margin-bottom: 1rem;
  animation: bkPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes bkPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.bk-success h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111827;
  margin-bottom: 0.55rem;
}
.bk-success > p {
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.bk-success-close {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.8rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: transparent;
  color: #374151;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.bk-success-close:hover { border-color: #a855f7; color: #7c3aed; }

/* Mobile */
@media (max-width: 520px) {
  .bk-banner { padding: 1.6rem 1.3rem 1.3rem; border-radius: 20px 20px 0 0; }
  .bk-body   { padding: 1.4rem 1.3rem 1.6rem; }
  .bk-modal  { border-radius: 20px; }
}

.cta-banner {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  border: 2px solid #e9d5ff;
  background: linear-gradient(125deg, #faf5ff 0%, #fdf2f8 56%, #fff7ed 100%);
  padding: 2.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
}
.cta-banner h3 { font-size: clamp(1.5rem, 3.2vw, 2rem); margin: 0.3rem 0 0.45rem; }
.cta-banner p { max-width: 41rem; }

.back-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-size: 1rem;
  background: var(--gradient-brand);
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(236,72,153,0.4);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(3px);
}
.gallery-panel {
  position: relative;
  z-index: 1;
  width: min(1000px, 100%);
  background: #fff;
  border-radius: 1.4rem;
  overflow: hidden;
}
.gallery-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 1.5rem;
  cursor: pointer;
}
.gallery-slide {
  min-height: 340px;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}
.gallery-slide h4 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
.gallery-slide p { color: rgba(255, 255, 255, 0.84); margin-top: 0.55rem; }
.gallery-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-top: 1px solid var(--line-soft);
}
.gallery-footer h3 { font-size: 1.12rem; }
.gallery-footer p { font-size: 0.92rem; }
.gallery-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.gallery-actions span { font-size: 0.88rem; color: #9ca3af; }
.gallery-actions button {
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 999px;
  background: #f3f4f6;
  cursor: pointer;
}
.gallery-actions button:hover { background: #fce7f3; color: #be185d; }

/* ── Background Circle Decoration ─────────────────────────── */
@keyframes deco-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes deco-pulse {
  0%,  100% { opacity: 0.20; transform: scale(1); }
  25%        { opacity: 0.28; transform: scale(1.03); }
  50%        { opacity: 0.22; transform: scale(1.06); }
  75%        { opacity: 0.30; transform: scale(1.02); }
}

.section--deco {
  position: relative;
  overflow: hidden;
}

.deco-circle {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  width: 500px;
  height: 500px;
  flex-shrink: 0;
  animation: deco-pulse 7s ease-in-out infinite;
}

.deco-circle img {
  width: 100%;
  height: 100%;
  display: block;
  animation: deco-spin 28s linear infinite;
}

/* top-right corner — bottom-left quarter peeks into section */
.deco-circle--tr {
  top: -250px;
  right: -250px;
}

/* bottom-left corner — top-right quarter peeks into section */
.deco-circle--bl {
  bottom: -250px;
  left: -250px;
}

/* bottom-right corner — top-left quarter peeks into section */
.deco-circle--br {
  bottom: -250px;
  right: -250px;
}


@media (max-width: 768px) {
  .deco-circle { width: 300px; height: 300px; }
  .deco-circle--tr { top: -150px; right: -150px; }
  .deco-circle--bl { bottom: -150px; left: -150px; }
  .deco-circle--br { bottom: -150px; right: -150px; }
}

/* ═══════════════════════════════════════════════════════════
   Video Showcase — shared structure (used on home + CC)
═══════════════════════════════════════════════════════════ */
.video-showcase {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 7rem;
}
.vshowcase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.vshowcase-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  pointer-events: none;
}
.vshowcase-orb--a { width: 420px; height: 420px; top: -80px;    left: -80px;  animation: orbDrift 9s  ease-in-out infinite alternate; }
.vshowcase-orb--b { width: 360px; height: 360px; bottom: -100px; right: -60px; animation: orbDrift 11s ease-in-out infinite alternate-reverse; }
.vshowcase-orb--c { width: 220px; height: 220px; top: 35%;      left: 44%;    animation: orbDrift 7s  ease-in-out infinite alternate; }

.vshowcase-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}
.vshowcase-copy { text-align: center; max-width: 640px; }
.vshowcase-copy .badge { margin-bottom: 1.1rem; }
.vshowcase-copy h2 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  color: var(--text);
  line-height: 1.18;
  margin: 0 0 0.9rem;
}
.vshowcase-copy > p:not(.badge):not(.pill) {
  font-size: clamp(0.97rem, 1.6vw, 1.12rem);
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.vshowcase-frame-wrap { position: relative; width: 100%; max-width: 1180px; }
.vshowcase-sparkle {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.65)) drop-shadow(0 0 22px rgba(168, 85, 247, 0.45));
  animation: sparkleTwinkle 2.6s ease-in-out infinite;
  pointer-events: none;
}
.vshowcase-sparkle--tl { top: -22px; left: -22px; }
.vshowcase-sparkle--br {
  bottom: -18px;
  right: -18px;
  width: 28px;
  height: 28px;
  opacity: 0.85;
  animation-delay: 1.1s;
}
@keyframes sparkleTwinkle {
  0%, 100% { transform: scale(1) rotate(0deg);   opacity: 1; }
  50%      { transform: scale(0.78) rotate(45deg); opacity: 0.6; }
}
.vshowcase-glow {
  position: absolute;
  inset: -28px;
  border-radius: calc(var(--radius-lg) + 28px);
  background: var(--gradient-brand);
  opacity: 0.22;
  filter: blur(48px);
  z-index: 0;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
@keyframes glowPulse {
  from { opacity: 0.16; transform: scale(0.97); }
  to   { opacity: 0.30; transform: scale(1.02); }
}
.vshowcase-frame {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: #1a0d2e;
  box-shadow:
    0 0 0 1px rgba(236,72,153,0.12),
    0 30px 60px -20px rgba(124,58,237,0.45),
    0 50px 120px -30px rgba(236,72,153,0.30);
}
.vshowcase-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: inherit;
}
.vshowcase-video-wrap video { display: block; width: 100%; height: 100%; object-fit: cover; }
.vshowcase-sound-btn {
  position: absolute;
  bottom: 1rem; right: 1rem;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  background: rgba(0,0,0,0.5);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.22s ease, transform 0.22s ease;
  z-index: 5;
}
.vshowcase-sound-btn:hover { background: var(--gradient-brand); color: #fff; transform: scale(1.1); }

@media (max-width: 760px) {
  .video-showcase    { padding: 4rem 0 5rem; }
  .vshowcase-inner   { gap: 2.5rem; }
  .vshowcase-copy h2 { font-size: 1.75rem; }
  .vshowcase-glow    { inset: -12px; filter: blur(26px); }
  .vshowcase-frame   { border-radius: 16px; }
  .vshowcase-sparkle--tl { width: 32px; height: 32px; top: -14px; left: -14px; }
  .vshowcase-sparkle--br { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
  .video-showcase  { padding: 3rem 0 4rem; }
  .vshowcase-frame { border-radius: 14px; }
}
