/* Elevate Edits Global Stylesheet */

:root {
  --brand: #5b2cff;
  --brand-light: #8b6bff;
  --brand-dark: #3d1bb2;
  --bg: #0b0710;
  --bg-alt: #131022;
  --surface: #17132b;
  --surface-2: #1e1938;
  --border: #2c2650;
  --text: #f4f2fb;
  --text-dim: #b6aed6;
  --text-mute: #8b83ab;
  --success: #34d399;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1200px;
  --shadow: 0 20px 60px rgba(91, 44, 255, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(ellipse 1200px 900px at -5% 0%, rgba(139, 107, 255, 0.55), transparent 62%),
    radial-gradient(ellipse 1400px 800px at 20% -10%, rgba(91, 44, 255, 0.4), transparent 65%),
    radial-gradient(ellipse 1000px 600px at 100% 0%, rgba(124, 77, 255, 0.28), transparent 55%),
    var(--bg);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

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

h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 16px; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { color: var(--text-dim); margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
  background: rgba(91, 44, 255, 0.12);
  border: 1px solid rgba(91, 44, 255, 0.35);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section { padding: 90px 0; }
.section-tight { padding: 60px 0; }
.center { text-align: center; }
.section-head { max-width: 640px; margin: 0 auto 48px; }
.section-head.left { margin: 0 0 48px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, #8b6bff, var(--brand) 55%, #4a1fd9);
  color: #fff;
  box-shadow: 0 10px 30px rgba(91, 44, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(91, 44, 255, 0.55); }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--brand-light); color: var(--brand-light); }
.btn-block { width: 100%; }
.nav-login-link { font-size: 0.95rem; font-weight: 600; color: var(--text); }
.nav-login-link:hover { color: var(--brand-light); }
.btn-arrow { display: inline-flex; align-items: center; gap: 8px; }
.btn-arrow .arrow { transition: transform 0.15s ease; }
.btn-arrow:hover .arrow { transform: translateX(3px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 18, 70, 0.88), rgba(11, 7, 16, 0.85));
  backdrop-filter: blur(14px);
  z-index: -1;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.15rem; }
.brand img { height: 36px; width: 36px; object-fit: cover; border-radius: 9px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  height: calc(100vh - 78px);
  background: var(--bg);
  z-index: 99;
  padding: 30px 24px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-menu .nav-cta { flex-direction: column; margin-top: 24px; }
.mobile-menu .btn { width: 100%; }
.mobile-menu .nav-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-bottom: none;
}
.mobile-menu .btn-secondary {
  border-color: rgba(139, 107, 255, 0.55);
  background: rgba(139, 107, 255, 0.1);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta.desktop-only { display: none; }
  .nav-toggle { display: flex; }
}

/* Hero */
.hero {
  padding: 28px 0 36px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(91,44,255,0.22), transparent 72%);
  z-index: -1;
  pointer-events: none;
}
.hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.hero-meta { margin-top: 16px; font-size: 0.85rem; color: var(--text-mute); }

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-stack .hero-text { max-width: 640px; text-align: center; }
.hero-stack .hero-text h1 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-bottom: 10px; overflow-wrap: break-word; }
@media (max-width: 380px) {
  .hero-stack .hero-text h1 { font-size: 1.35rem; }
}
.hero-stack .hero-text > p { margin-bottom: 0; font-size: 0.98rem; }
.hero-stack .hero-cta { justify-content: center; margin-top: 4px; }
.hero-stack .hero-arrow-label { justify-content: center; margin: 18px auto 6px; }
.hero-stack .hero-media-row { width: 100%; max-width: 1100px; margin-top: 14px; }
.hero-media-row-big .hero-media-arrow { width: 56px; height: 56px; font-size: 1.5rem; }

.hero-media-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-media-box {
  flex: 1;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #000;
}
.hero-media-box video { width: 100%; height: 100%; object-fit: cover; }
.hero-media-arrow {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7c4dff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 8px 24px rgba(91, 44, 255, 0.5);
}
@media (max-width: 500px) {
  .hero-media-row { gap: 8px; }
  .hero-stack .hero-media-row { max-width: 340px; }
  .hero-media-arrow { width: 32px; height: 32px; font-size: 1rem; }
}
.hero-media-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(11,7,16,0.75); backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 100px; font-size: 0.72rem; font-weight: 700;
  z-index: 2;
}
.hero-media-tag.after { border-color: var(--brand); color: var(--brand-light); }
.hero-text { text-align: left; }
.hero-text h1 { font-size: clamp(2.1rem, 4vw, 3rem); overflow-wrap: break-word; }
@media (max-width: 480px) {
  .hero-text h1 { font-size: 1.6rem; }
}
.typewriter-text {
  background: linear-gradient(90deg, #a68bff, var(--brand-light) 45%, #ff8fd6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--brand-light);
}
.typewriter-cursor { color: var(--brand-light); font-weight: 300; animation: typewriter-blink 0.9s steps(1) infinite; }
@keyframes typewriter-blink { 50% { opacity: 0; } }

/* Cards / Grid */
.grid { display: grid; gap: 24px; }
.grid-tight { gap: 8px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, #100c1e, #0a0712);
  border: 1px solid rgba(139, 107, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 16px 40px rgba(91, 44, 255, 0.12), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  border-color: rgba(139, 107, 255, 0.5);
  box-shadow: 0 20px 50px rgba(91, 44, 255, 0.22), inset 0 1px 0 rgba(255,255,255,0.05);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(91,44,255,0.15);
  border: 1px solid rgba(91,44,255,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--brand-light);
}

/* Stats */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar .grid { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: var(--brand-light); }
.stat-label { color: var(--text-mute); font-size: 0.9rem; }

/* Trust label */
.trust-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.trust-label::before, .trust-label::after {
  content: '';
  height: 1px;
  width: 44px;
  background: linear-gradient(90deg, transparent, var(--border));
}
.trust-label::after { background: linear-gradient(90deg, var(--border), transparent); }
@media (max-width: 560px) {
  .trust-label::before, .trust-label::after { width: 20px; }
}

/* Logo marquee */
.logo-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 47s linear infinite;
}
.logo-marquee:hover .logo-marquee-track { animation-play-state: paused; }
.logo-marquee-track img {
  height: 146px;
  width: auto;
  filter: grayscale(1) brightness(1.7);
  opacity: 0.85;
  transition: opacity 0.2s, filter 0.2s;
  flex-shrink: 0;
}
.logo-marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7c4dff);
  color: #fff; font-weight: 800; margin-bottom: 16px;
}

/* Results and proof, square format, thumbnail style */
.result-hero { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.result-hero-grid { display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 800px) { .result-hero-grid { grid-template-columns: 1fr; } }
.result-hero-cell { position: relative; }
.result-hero-cell video { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.result-hero-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(11,7,16,0.75); backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px; font-size: 0.8rem; font-weight: 700;
}
.result-hero-tag.after { border-color: var(--brand); color: var(--brand-light); }

.result-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.result-card video { aspect-ratio: 1/1; object-fit: cover; width: 100%; background: #000; }
.result-card-body { padding: 16px; }

/* Testimonials, YouTube thumbnail style cards */
.testi-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.testi-scroll::-webkit-scrollbar { height: 6px; }
.testi-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  flex: 0 0 340px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.testi-card:hover { transform: translateY(-4px); border-color: var(--brand); }
.testi-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
  display: block;
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  cursor: pointer;
}
.testi-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.testi-thumb-name {
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  line-height: 1.2;
}
.testi-thumb-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7c4dff);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(91,44,255,0.5);
  font-size: 1.1rem; color: #fff;
}
.testi-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.testi-stars { color: #f5c518; font-size: 0.9rem; letter-spacing: 2px; }
.testi-quote { font-size: 0.92rem; color: var(--text-dim); flex: 1; }
.testi-person { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #7c4dff);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.8rem; color: #fff; flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-company { color: var(--text-mute); font-size: 0.8rem; }
.testi-link { font-size: 0.85rem; color: var(--brand-light); font-weight: 600; }

/* Testimonial carousel */
.testi-carousel { position: relative; padding: 0 56px; }
.testi-carousel-viewport { overflow: hidden; }
.testi-track { display: flex; transition: transform 0.4s ease; }
.testi-slide { flex: 0 0 33.333%; padding: 0 12px; box-sizing: border-box; }
.testi-slide .testi-card { height: 100%; }
@media (max-width: 900px) { .testi-slide { flex: 0 0 50%; } }
@media (max-width: 620px) { .testi-slide { flex: 0 0 100%; } .testi-carousel { padding: 0 44px; } }
.result-carousel .testi-slide { flex-basis: 50%; }
@media (max-width: 620px) { .result-carousel .testi-slide { flex-basis: 100%; } }
.text-testi-carousel .testi-slide { flex-basis: 25%; }
.text-testi-carousel .testi-card { flex-basis: auto; }
.text-testi-carousel .testi-body { padding: 14px 16px; gap: 6px; }
.text-testi-carousel .testi-stars { font-size: 0.72rem; letter-spacing: 1px; }
.text-testi-carousel .testi-quote {
  font-size: 0.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-testi-carousel .testi-avatar { width: 26px; height: 26px; font-size: 0.62rem; }
.text-testi-carousel .testi-name { font-size: 0.78rem; }
.testi-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.testi-arrow:hover { border-color: var(--brand-light); color: var(--brand-light); }
.testi-arrow.prev { left: 0; }
.testi-arrow.next { right: 0; }

/* Inline video modal */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 10, 0.9);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.open { display: flex; }
.video-modal-inner { width: 100%; max-width: 900px; }
.video-modal-frame { position: relative; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; background: #000; }
.video-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-modal-close {
  display: block;
  margin: 0 0 12px auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}
.video-modal-close:hover { border-color: var(--brand-light); color: var(--brand-light); }

/* Pricing */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border-color: var(--brand);
  background: linear-gradient(180deg, rgba(91,44,255,0.14), var(--surface) 40%);
  box-shadow: var(--shadow);
  transform: scale(1.02);
}
.price-badge {
  align-self: flex-start;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.price-amount { font-size: 2.6rem; font-weight: 800; margin: 10px 0 4px; }
.price-amount span { font-size: 1rem; color: var(--text-mute); font-weight: 500; }
.price-features { margin: 26px 0; display: flex; flex-direction: column; gap: 12px; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-dim); font-size: 0.95rem; }
.price-features li::before { content: '✓'; color: var(--success); font-weight: 800; flex-shrink: 0; }

/* Video embed */
.portfolio-embed { position: relative; padding-top: 56.25%; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: #000; }
.portfolio-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* FAQ */
.form-alert { padding: 12px 16px; border-radius: var(--radius); background: var(--surface-2); border: 1px solid var(--border); font-size: 0.9rem; margin-bottom: 18px; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; color: var(--text);
  font-size: 1.05rem; font-weight: 600; padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon { transition: transform 0.2s ease; color: var(--brand-light); font-size: 1.3rem; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: 22px; margin: 0; }

/* Forms */
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 8px; color: var(--text-dim); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  font-family: inherit; font-size: 0.95rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--brand); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, rgba(91,44,255,0.2), rgba(124,77,255,0.08));
  border: 1px solid rgba(91,44,255,0.35);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 64px 0 32px; background: var(--bg-alt); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-mute); margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 12px; }
.footer-grid ul a { color: var(--text-dim); font-size: 0.92rem; }
.footer-grid ul a:hover { color: var(--brand-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border); padding-top: 28px; font-size: 0.85rem; color: var(--text-mute); }
.social-row { display: flex; gap: 14px; }
.social-row a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; }
.social-row a:hover { border-color: var(--brand-light); color: var(--brand-light); }

/* Page hero (inner pages) */
.page-hero { padding: 60px 0 40px; text-align: center; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-mute { color: var(--text-mute); }
.badge-outline { border: 1px solid var(--border); border-radius: 100px; padding: 6px 14px; font-size: 0.8rem; color: var(--text-dim); }

/* Floating chat button */
.chat-bubble {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--brand), #7c4dff);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(91, 44, 255, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.chat-bubble:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(91, 44, 255, 0.6); }
@media (max-width: 640px) {
  .chat-bubble { bottom: 16px; right: 16px; padding: 10px 16px; font-size: 0.82rem; }
  body { padding-bottom: 64px; }
}

/* Nav dropdown */
.nav-item-dropdown { position: relative; }
.nav-item-dropdown > span { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-item-dropdown > span::after { content: '▾'; font-size: 0.7em; }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  width: 460px;
  background: linear-gradient(180deg, rgba(45, 22, 92, 0.5), rgba(11, 7, 16, 0.98)), var(--bg);
  border: 1px solid rgba(139, 107, 255, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(91, 44, 255, 0.3);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.nav-item-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-card {
  display: block;
  padding: 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.nav-dropdown-card:hover { background: rgba(91, 44, 255, 0.18); border-color: rgba(139, 107, 255, 0.4); }
.nav-dropdown-card strong { display: block; font-size: 0.92rem; margin-bottom: 4px; color: var(--text); }
.nav-dropdown-card span { font-size: 0.8rem; color: var(--text-mute); }
@media (max-width: 900px) { .nav-item-dropdown { display: none; } }

/* Mobile services group */
.mobile-menu-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  font-size: 1.2rem;
  font-family: inherit;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.mobile-menu-group-toggle .chevron {
  font-size: 0.7em;
  color: var(--text-mute);
  transition: transform 0.2s ease;
}
.mobile-menu-group-toggle[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.mobile-menu-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.mobile-menu-sub.expanded { max-height: 300px; }
.mobile-menu-sub a { padding-left: 16px; font-size: 1rem; color: var(--text-dim); }

/* Hero arrow label, points at the Get Started button */
.hero-arrow-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-light);
  font-family: 'Comic Sans MS', 'Segoe Print', cursive;
  font-size: 0.95rem;
  margin: 4px 0 2px 6px;
  transform: rotate(-4deg);
}
.hero-arrow-label svg { flex-shrink: 0; }

/* Service tab pills */
.tab-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.tab-pill {
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.15s ease;
}
.tab-pill:hover { border-color: var(--brand-light); color: var(--text); }
.service-block { padding: 48px 0; border-top: 1px solid var(--border); }
.service-block:first-of-type { border-top: none; padding-top: 0; }
.service-block-head { max-width: 640px; margin: 0 auto 32px; text-align: center; }

/* All packages include */
.include-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 40px;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 700px) { .include-list { grid-template-columns: 1fr; } }
.include-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.include-item .card-icon { margin-bottom: 0; flex-shrink: 0; }
.include-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.include-item span { font-size: 0.85rem; color: var(--text-mute); }

/* Editor collage CTA */
.editor-collage {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.editor-collage-photo {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  border: 3px solid var(--bg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  object-fit: cover;
  object-position: top center;
  margin-left: -10px;
  transition: transform 0.2s ease, z-index 0s;
  position: relative;
}
.editor-collage-photo:first-child { margin-left: 0; }
.editor-collage-photo:nth-child(1) { transform: rotate(-8deg); z-index: 1; }
.editor-collage-photo:nth-child(2) { transform: rotate(-4deg) translateY(-6px); z-index: 3; }
.editor-collage-photo:nth-child(3) { transform: rotate(0deg) translateY(-10px); z-index: 5; width: 120px; height: 120px; }
.editor-collage-photo:nth-child(4) { transform: rotate(4deg) translateY(-6px); z-index: 3; }
.editor-collage-photo:nth-child(5) { transform: rotate(8deg); z-index: 1; }
.editor-collage-photo:hover { transform: translateY(-10px) scale(1.05) !important; z-index: 10; }
@media (max-width: 600px) {
  .editor-collage-photo { width: 60px; height: 60px; margin-left: -6px; }
  .editor-collage-photo:nth-child(3) { width: 76px; height: 76px; }
}

/* Real client photo strip, reuses the logo marquee's scrolling pattern */
.people-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.people-marquee-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.people-marquee:hover .people-marquee-track { animation-play-state: paused; }
.people-marquee-track img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
  opacity: 0.9;
  transition: opacity 0.2s, transform 0.2s;
}
.people-marquee-track img:hover { opacity: 1; transform: scale(1.08); }

/* Simplified starting-at pricing block */
.price-simple {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow);
}
.price-simple-amount { font-size: 2.4rem; font-weight: 800; margin-bottom: 6px; }
.price-simple-amount span { font-size: 1rem; color: var(--text-mute); font-weight: 500; }
.price-simple > p { max-width: 440px; margin: 0 auto 28px; }
.price-simple .price-features {
  text-align: left;
  max-width: 380px;
  margin: 0 auto 32px;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 500px) {
  .price-simple { padding: 36px 24px; }
}

/* Vertical (9:16) video embed for short-form examples */
.portfolio-embed.vertical { padding-top: 0; aspect-ratio: 9/16; width: 100%; max-width: 280px; margin: 0 auto; }
.home-short-form-grid { gap: 6px; }
.home-short-form-grid .portfolio-embed.vertical { max-width: none; }
.portfolio-embed.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-style: dashed;
}
.portfolio-embed.placeholder span {
  color: var(--text-mute);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  padding: 0 16px;
}

/* Video lightbox: clicking any portfolio embed opens a large modal player
   instead of playing inline in the small grid box. */
.portfolio-embed-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease;
  z-index: 2;
}
.portfolio-embed-overlay:hover { background: rgba(0, 0, 0, 0.35); }
.portfolio-embed-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  padding-left: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  flex-shrink: 0;
}
.portfolio-video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 3, 10, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 56px 24px 24px;
}
.portfolio-video-modal.open { display: flex; }
.portfolio-video-modal-content { position: relative; width: 100%; max-width: 1100px; }
.portfolio-video-modal.vertical .portfolio-video-modal-content { max-width: 420px; }
.portfolio-video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}
.portfolio-video-modal.vertical .portfolio-video-modal-frame { aspect-ratio: 9 / 16; }
.portfolio-video-modal-frame iframe, .portfolio-video-modal-frame > div {
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
.portfolio-video-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(5, 3, 10, 0.65);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-video-modal-close:hover { color: var(--brand-light); }

/* Blog listing + article */
.blog-card { display: flex; flex-direction: column; height: 100%; }
.blog-card-tag { color: var(--brand-light); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.blog-card h3 { margin-bottom: 10px; }
.blog-card p { flex: 1; }
.blog-card-meta { color: var(--text-mute); font-size: 0.82rem; margin-top: 12px; }
.blog-card-link { color: var(--brand-light); font-weight: 700; font-size: 0.9rem; margin-top: 14px; display: inline-block; }

.article-wrap { max-width: 740px; margin: 0 auto; }
.article-meta { color: var(--text-mute); font-size: 0.88rem; margin-bottom: 8px; }
.article-body h2 { margin-top: 40px; font-size: 1.5rem; }
.article-body h3 { margin-top: 28px; }
.article-body p { font-size: 1.02rem; line-height: 1.75; }
.article-body ul { margin: 0 0 20px; padding-left: 22px; list-style: disc; }
.article-body ul li { color: var(--text-dim); margin-bottom: 8px; }
.article-body blockquote { border-left: 3px solid var(--brand); margin: 28px 0; padding: 4px 0 4px 20px; color: var(--text); font-style: italic; }

.book-embed-wrap { max-width: 700px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: #0b0710; }
.book-embed-wrap iframe { display: block; width: 100%; height: 540px; border: none; }
@media (max-width: 720px) { .book-embed-wrap iframe { height: 820px; } }
.book-embed-facade {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 320px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: inherit;
}
.book-embed-facade-icon { font-size: 2.2rem; }
.book-embed-facade-title { font-size: 1.1rem; font-weight: 700; }
.book-embed-facade-sub { color: var(--text-mute); font-size: 0.88rem; }
.book-embed-facade:hover .book-embed-facade-title { color: var(--brand-light); }
.article-table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--border); }
.article-body table { width: 100%; border-collapse: collapse; min-width: 560px; }
.article-body table th, .article-body table td { padding: 12px 16px; text-align: left; font-size: 0.92rem; border-bottom: 1px solid var(--border); }
.article-body table th { background: var(--bg-alt); color: var(--text); font-weight: 700; white-space: nowrap; }
.article-body table td { color: var(--text-dim); }
.article-body table tr:last-child td { border-bottom: none; }
.article-faq-item { margin-bottom: 22px; }
.article-faq-item h3 { margin-top: 0; margin-bottom: 8px; font-size: 1.08rem; }
.article-cta { margin-top: 48px; padding: 32px; border-radius: var(--radius-lg); background: var(--bg-alt); border: 1px solid var(--border); text-align: center; }
.related-posts { margin-top: 48px; }
.related-posts h3 { margin-bottom: 16px; font-size: 1.1rem; }
.related-post-card { display: block; padding: 18px; font-size: 0.92rem; font-weight: 600; color: var(--text); text-decoration: none; line-height: 1.4; }
.related-post-card:hover { color: var(--brand-light); }
