:root {
  --bg: #0a0a0f;
  --bg-surface: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e8f0;
  --fg-muted: #8888a0;
  --accent: #f0c040;
  --accent-glow: rgba(240, 192, 64, 0.15);
  --electric: #40d8f0;
  --coral: #f06848;
  --green: #48d890;
  --radius: 16px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== NAV ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

.site-nav.nav--scrolled {
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--fg); }

.nav-cta {
  padding: 10px 22px;
  font-size: 0.875rem;
}

@media (max-width: 480px) {
  .nav-link { display: none; }
  .nav-cta { padding: 9px 18px; font-size: 0.82rem; }
}

/* ========== HERO ========== */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(64, 216, 240, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(240, 192, 64, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
}

/* ========== STATS BAR ========== */
.stats-bar {
  padding: 0 24px;
  margin-bottom: 80px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-item {
  background: var(--bg-surface);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.5px;
}

/* ========== PROBLEM ========== */
.problem {
  padding: 80px 24px;
}

.problem-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--electric);
  margin-bottom: 20px;
}

.problem h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 40px;
  max-width: 700px;
}

.pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-surface);
  border-radius: 12px;
  border-left: 3px solid var(--coral);
  font-size: 1.05rem;
  color: var(--fg-muted);
}

.pain-list li .pain-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.1rem;
}

/* ========== SERVICES ========== */
.services {
  padding: 80px 24px;
}

.services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.services h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.service-card:hover {
  border-color: rgba(240, 192, 64, 0.3);
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ========== WHO WE SERVE ========== */
.niches {
  padding: 80px 24px;
}

.niches-inner {
  max-width: 900px;
  margin: 0 auto;
}

.niches h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.niches .section-desc {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
}

.niche-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.niche-tag {
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--fg);
  font-family: var(--font-body);
  transition: all 0.3s;
}

.niche-tag:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ========== CLOSING ========== */
.closing {
  padding: 120px 24px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.closing h2 .highlight {
  color: var(--accent);
}

.closing p {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ========== FOOTER ========== */
footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--fg);
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ========== HERO CTAs ========== */
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent);
  color: #0a0a0f;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  letter-spacing: 0.2px;
}

.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  padding: 14px 32px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  text-align: center;
}

.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* ========== SECTION COMMON ========== */
.section-desc {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.6;
}

/* ========== GALLERY ========== */
.gallery {
  padding: 80px 24px;
}

.gallery-inner {
  max-width: 900px;
  margin: 0 auto;
}

.gallery-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.gallery-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-tab:hover, .gallery-tab.active {
  background: var(--accent-glow);
  border-color: rgba(240, 192, 64, 0.4);
  color: var(--accent);
}

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

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: opacity 0.3s;
}

.gallery-item.hidden { display: none; }

.gallery-thumb {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9/14;
  cursor: pointer;
}

.gallery-thumb--video { aspect-ratio: 9/16; }

.gallery-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.gallery-thumb:hover .gallery-bg { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 12px;
}

.gallery-type-badge {
  padding: 4px 12px;
  background: rgba(240,192,64,0.9);
  color: #0a0a0f;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gallery-type-badge--coral {
  background: rgba(240,104,72,0.9);
  color: #fff;
}

.gallery-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.gallery-caption span {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Mock content inside gallery cards */
.gallery-mock-video {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 16px;
}

.mock-play {
  width: 48px;
  height: 48px;
  background: rgba(240,192,64,0.2);
  border: 2px solid rgba(240,192,64,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  padding-left: 3px;
}

.mock-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
  text-align: center;
}

.mock-niche {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.gallery-mock-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 16px;
  width: 100%;
}

.mock-post-img {
  font-size: 2.4rem;
  line-height: 1;
}

.mock-post-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.mock-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
}

.mock-line--accent { background: rgba(240,192,64,0.5); width: 60%; }
.mock-line--electric { background: rgba(64,216,240,0.5); width: 50%; }
.mock-line--full { width: 100%; }
.mock-line--half { width: 50%; }
.mock-line--three-quarter { width: 75%; }

.gallery-mock-ad {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  text-align: center;
}

.mock-ad-headline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}

.mock-ad-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.mock-ad-cta {
  padding: 6px 18px;
  background: var(--coral);
  color: #fff;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-top: 4px;
}

/* ========== PRICING ========== */
.pricing {
  padding: 80px 24px;
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 0.3s;
}

.pricing-card:hover {
  border-color: rgba(255,255,255,0.12);
}

.pricing-card--featured {
  background: var(--bg-card);
  border-color: rgba(240, 192, 64, 0.4);
  /* Slightly elevated */
  box-shadow: 0 0 0 1px rgba(240, 192, 64, 0.2), 0 20px 40px rgba(0,0,0,0.3);
}

.pricing-card--featured:hover {
  border-color: rgba(240, 192, 64, 0.6);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  background: var(--accent);
  color: #0a0a0f;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fg-muted);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: -8px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.4;
}

.feat-check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-muted {
  color: rgba(255,255,255,0.15);
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 1px;
}

/* ========== CONTACT ========== */
.contact {
  padding: 80px 24px;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 700px;
}

.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  font-family: var(--font-display);
  letter-spacing: 0.3px;
}

.label-optional {
  font-weight: 400;
  color: rgba(136,136,160,0.6);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(136,136,160,0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(240, 192, 64, 0.5);
  background: rgba(26,26,38,0.8);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238888a0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--fg);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  display: flex;
  justify-content: flex-start;
}

.btn-submit {
  min-width: 160px;
  font-size: 1rem;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-message--success {
  background: rgba(72, 216, 144, 0.1);
  border: 1px solid rgba(72, 216, 144, 0.3);
  color: var(--green);
}

.form-message--error {
  background: rgba(240, 104, 72, 0.1);
  border: 1px solid rgba(240, 104, 72, 0.3);
  color: var(--coral);
}

/* ========== CLOSING CTA ========== */
.closing-cta {
  margin-top: 40px;
  display: inline-block;
}

/* ========== FOOTER NAV ========== */
.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .stats-inner { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .niche-tags { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .contact-card { padding: 28px 20px; }
  .footer-nav { justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ========== SOCIAL POST MOCKS ========== */

/* Gallery card bg colors per niche */
.gallery-bg--gym-post   { background: linear-gradient(160deg, #0d1a0d 0%, #142814 50%, #0a1a10 100%); }
.gallery-bg--gym-reel   { background: linear-gradient(160deg, #0a0d18 0%, #141c2a 100%); }
.gallery-bg--dentist-ad { background: linear-gradient(160deg, #080d18 0%, #0d1428 100%); }
.gallery-bg--dentist-story { background: linear-gradient(160deg, #0a0818 0%, #14082a 100%); }
.gallery-bg--barber-reel { background: linear-gradient(160deg, #0a0808 0%, #180808 100%); }
.gallery-bg--barber-post { background: linear-gradient(160deg, #08080a 0%, #101010 100%); }
.gallery-bg--restaurant-post { background: linear-gradient(160deg, #180a00 0%, #281400 100%); }
.gallery-bg--restaurant-reel { background: linear-gradient(160deg, #1a0800 0%, #2a1200 100%); }

/* Social Post Mock — the "card within a card" UI */
.social-post-mock {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  font-size: 0.72rem;
}

.spm-platform {
  padding: 6px 10px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.spm-platform--ig { background: linear-gradient(90deg, #833ab4, #fd1d1d, #fcb045); color: #fff; }
.spm-platform--fb { background: #1877f2; color: #fff; }

.spm-image-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 8px;
  min-height: 90px;
}

.spm-image-area--blue { background: linear-gradient(135deg, #0a1a3a, #0d2a5a); }
.spm-image-area--dark { background: linear-gradient(135deg, #0a0a0a, #141414); }
.spm-image-area--food { background: linear-gradient(135deg, #1a0800, #2a1200); }

.spm-image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.spm-big-stat {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
}
.spm-big-stat--gold { color: var(--accent); }
.spm-arrow { color: var(--fg-muted); font-size: 0.9rem; }

.spm-image-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 4px;
}

.spm-caption {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spm-headline-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2px;
}

.spm-caption-text {
  font-size: 0.68rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.spm-hashtags {
  font-size: 0.6rem;
  color: var(--electric);
  line-height: 1.4;
  opacity: 0.8;
}

.ad-cta-bar {
  margin-top: 6px;
  padding: 5px 10px;
  background: #1877f2;
  color: #fff;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-align: center;
}

.ad-promo-text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--electric);
  text-align: center;
  line-height: 1.3;
}
.ad-promo-price {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}
.ad-promo-sub {
  font-size: 0.62rem;
  color: var(--fg-muted);
  text-align: center;
}

/* Reel mock */
.gallery-thumb--story { aspect-ratio: 9/16; }

.reel-mock {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px 8px;
}

.reel-platform {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.reel-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}

.reel-play {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #fff;
  padding-left: 3px;
}

.reel-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.reel-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

.reel-right-actions {
  position: absolute;
  right: 8px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.reel-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  font-size: 0.9rem;
  color: #fff;
}

.reel-action span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-display);
}

.reel-caption-bar {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
  padding-right: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 6px;
}

/* Story mock */
.story-mock {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 10px;
}

.story-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.story-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: #fff;
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
}

.story-name {
  font-size: 0.62rem;
  font-weight: 600;
  color: #fff;
  font-family: var(--font-display);
}

.story-time {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.5);
  margin-left: auto;
}

.story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.story-question {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.story-fact {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.story-highlight { color: var(--electric); font-size: 1.4rem; }

.story-swipe {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
}

/* Barber-specific mocks */
.barber-pole { font-size: 1.8rem; }

.barber-slots {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 6px;
}

.barber-slot {
  font-size: 0.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
}

.barber-slot--taken {
  background: rgba(255,255,255,0.08);
  color: var(--fg-muted);
  text-decoration: line-through;
}

.barber-slot--open {
  background: rgba(72,216,144,0.2);
  border: 1px solid rgba(72,216,144,0.4);
  color: var(--green);
}

/* Food mock */
.food-emoji { font-size: 1.8rem; }
.food-label {
  font-size: 0.55rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
}
.food-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--fg);
}
.food-price {
  font-size: 0.65rem;
  color: var(--coral);
  font-weight: 600;
}

/* Platform badges per type */
.gallery-type-badge--ig { background: linear-gradient(90deg, #833ab4, #fd1d1d); color: #fff; }
.gallery-type-badge--tiktok { background: #010101; color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.gallery-type-badge--fb { background: #1877f2; color: #fff; }

/* ========== BEFORE / AFTER ========== */
.before-after-section { margin-top: 24px; }

.before-after-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
}

.ba-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-arrow {
  font-size: 2rem;
  color: var(--accent);
  font-weight: 700;
}

.ba-card {
  background: var(--bg-surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ba-card--before { border-color: rgba(240,104,72,0.2); }
.ba-card--after { border-color: rgba(72,216,144,0.3); }

.ba-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.ba-label--before { color: var(--coral); }
.ba-label--after { color: var(--green); }

.ba-post-mock {
  background: var(--bg-card);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ba-post-mock--after {
  background: #111120;
  border: 1px solid rgba(255,255,255,0.06);
}

.ba-post-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ba-avatar--gray { background: rgba(255,255,255,0.1); color: var(--fg-muted); }
.ba-avatar--gold { background: var(--accent); color: #0a0a0f; }
.ba-avatar--electric { background: var(--electric); color: #0a0a0f; }

.ba-post-meta { flex: 1; }
.ba-username {
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--fg-muted);
}
.ba-timestamp { font-size: 0.65rem; color: rgba(136,136,160,0.5); }

.ba-sponsored-badge {
  font-size: 0.6rem;
  color: rgba(136,136,160,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2px 6px;
  border-radius: 4px;
}

.ba-post-body { display: flex; flex-direction: column; gap: 8px; }

.ba-post-text { font-size: 0.82rem; line-height: 1.5; }
.ba-post-text--weak { color: var(--fg-muted); }
.ba-post-text--strong { color: var(--fg); }

.ba-post-img-placeholder {
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.4rem;
}

.ba-post-img-pro {
  background: linear-gradient(135deg, #0d2010, #142814);
  border-radius: 8px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(72,216,144,0.2);
}

.ba-img-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ba-stat-big {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}

.ba-stat-label { font-size: 0.65rem; color: var(--fg-muted); }

.ba-img-cta {
  margin-top: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.ba-hashtags { font-size: 0.68rem; color: var(--electric); }

.ba-post-footer {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ba-stat { font-size: 0.72rem; color: var(--fg-muted); }
.ba-stat--gold { color: var(--accent); font-weight: 600; }

.ba-verdict { display: flex; justify-content: center; }

.ba-verdict-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.ba-verdict-tag--bad {
  background: rgba(240,104,72,0.1);
  border: 1px solid rgba(240,104,72,0.3);
  color: var(--coral);
}
.ba-verdict-tag--good {
  background: rgba(72,216,144,0.1);
  border: 1px solid rgba(72,216,144,0.3);
  color: var(--green);
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 80px 24px;
  background: var(--bg-surface);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.testimonials-inner {
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.testimonials-inner .section-desc {
  margin-bottom: 40px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: border-color 0.3s;
}

.testi-card:hover { border-color: rgba(255,255,255,0.12); }

.testi-card--featured {
  border-color: rgba(240,192,64,0.3);
  box-shadow: 0 0 0 1px rgba(240,192,64,0.1), 0 16px 32px rgba(0,0,0,0.2);
}

.testi-stars {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.testi-quote {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.65;
  flex: 1;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(240,192,64,0.15);
  border: 1px solid rgba(240,192,64,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.testi-avatar--electric {
  background: rgba(64,216,240,0.15);
  border-color: rgba(64,216,240,0.3);
  color: var(--electric);
}

.testi-avatar--coral {
  background: rgba(240,104,72,0.15);
  border-color: rgba(240,104,72,0.3);
  color: var(--coral);
}

.testi-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.testi-biz {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

.testi-example-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 0.6rem;
  color: rgba(136,136,160,0.5);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 2px 8px;
  border-radius: 100px;
  font-family: var(--font-display);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .testi-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-arrow { transform: rotate(90deg); }
  .ba-divider { padding: 4px 0; }
}