/* SHOWCASE */
.showcase {
  background: var(--surface-alt);
  padding: 96px 32px;
}
.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.showcase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.showcase-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  border-color: rgba(13,13,13,0.18);
}
.sc-video-wrap {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--fg);
  overflow: hidden;
}
.sc-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(191,255,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  z-index: 2;
}
.sc-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  animation: sc-scan 2s linear infinite;
}
.sc-bar-2 { animation-delay: 0.6s; background: rgba(191,255,0,0.5); }
.sc-bar-3 { animation-delay: 1.2s; background: rgba(255,255,255,0.4); }
.sc-bar-4 { animation-delay: 0.3s; background: rgba(191,255,0,0.65); }

/* Animated noise on video panels */
.sc-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.03) 3px,
    rgba(255,255,255,0.03) 4px
  );
  z-index: 1;
}

@keyframes sc-scan {
  0%   { width: 0%; left: 0; }
  50%  { width: 100%; left: 0; }
  51%  { width: 100%; left: 0; }
  100% { width: 100%; left: auto; right: 0; opacity: 0; }
}
.sc-reels .sc-video-wrap { background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%); }
.sc-tiktok .sc-video-wrap { background: linear-gradient(135deg, #0f0f23 0%, #1a0a0a 100%); }
.sc-clips .sc-video-wrap { background: linear-gradient(135deg, #111111 0%, #0a1a0a 100%); }

.sc-label {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-format {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.sc-desc {
  font-size: 11px;
  color: var(--fg-muted);
  text-align: right;
}
.showcase-note {
  font-size: 14px;
  color: var(--fg-muted);
  text-align: center;
}

/* INQUIRY */
.inquiry {
  padding: 96px 32px;
  background: var(--bg);
}
.inquiry-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.inquiry-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 400px;
  margin-top: 20px;
}
.inquiry-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.inquiry-form { display: flex; flex-direction: column; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A5A5A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-group input::placeholder { color: #aaa; }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--fg);
  box-shadow: 0 0 0 3px rgba(13,13,13,0.06);
}
.btn-inquiry {
  padding: 14px 32px;
  background: var(--fg);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-inquiry:hover { background: #222; }
.btn-inquiry:active { transform: scale(0.98); }
.btn-inquiry:disabled { opacity: 0.65; cursor: not-allowed; }
.btn-loading { font-style: italic; }
.form-note {
  font-size: 12px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: -12px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(191,255,0,0.15);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--fg);
  font-size: 14px;
  font-weight: 500;
}
.form-error {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(220,38,38,0.08);
  border: 1px solid rgba(220,38,38,0.3);
  border-radius: var(--radius);
  color: #b91c1c;
  font-size: 13px;
}

/* NAV CTA */
.nav-cta {
  background: var(--accent);
  color: var(--fg) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* 375px mobile */
@media (max-width: 375px) {
  .showcase { padding: 64px 16px; }
  .showcase-grid { grid-template-columns: 1fr; gap: 16px; }
  .sc-video-wrap { aspect-ratio: 16/9; }
  .inquiry { padding: 64px 16px; }
  .inquiry-inner { grid-template-columns: 1fr; gap: 40px; }
  .inquiry-form-wrap { padding: 24px 20px; }
  .inquiry-form { gap: 18px; }
  .form-group input,
  .form-group select { font-size: 14px; padding: 11px 14px; }
  .btn-inquiry { font-size: 14px; }
  .showcase, .services, .pricing, .process, .inquiry, .closing { padding-left: 16px; padding-right: 16px; }
  .header-inner { padding: 14px 16px; }
  .section-heading { font-size: 28px; }
}