/* ═══════════════════════════════════════════════════════════════
   CropStudio AI — Elite UI (Pixelcut Inspired)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-muted: #666666;
  --color-accent: #007aff;
  --color-accent-hover: #005bb5;
  --color-surface: #f5f5f7;
  --color-surface-hover: #ebebed;
  --color-border: #e5e5ea;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
  --shadow-mockup: 0 40px 100px -20px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body, html {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ─── Buttons ─── */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  line-height: 1;
}

.landing-btn--primary {
  background: var(--color-text);
  color: #fff;
}

.landing-btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.landing-btn--xl {
  padding: 16px 36px;
  font-size: 17px;
}

/* ─── Navbar ─── */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.landing-nav.scrolled {
  border-bottom: 1px solid var(--color-border);
}

.landing-nav__left, .landing-nav__right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.landing-nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.landing-nav__logo-icon {
  width: 28px;
  height: 28px;
  background: var(--color-text);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
}

.landing-nav__logo-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.5px;
  color: var(--color-text);
}

.landing-nav__links {
  display: flex;
  gap: 24px;
}

.landing-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.landing-nav__link:hover {
  color: var(--color-text);
}

.landing-nav__link-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
}

/* ─── Hero Section ─── */
.elite-hero {
  padding: 160px 20px 80px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.elite-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-surface);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 32px;
  border: 1px solid var(--color-border);
}

.elite-hero__badge-star {
  color: #F59E0B;
}

.elite-hero__title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 1.05;
  margin: 0 0 24px;
}

.elite-hero__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.4;
  font-weight: 500;
}

.elite-hero__ctas {
  margin-bottom: 80px;
}

/* ─── Interactive Mockup Widget ─── */
.elite-mockup-wrapper {
  margin-top: 64px;
  position: relative;
}

.elite-mockup-controls {
  display: inline-flex;
  background: var(--color-surface);
  padding: 4px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
}

.elite-mockup-toggle {
  background: transparent;
  border: none;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 100px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.elite-mockup-toggle.active {
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.elite-mockup {
  background: #fff;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-mockup);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
}

.elite-mockup--desktop {
  width: 1000px;
  max-width: 100%;
  height: 600px;
}

.elite-mockup--mobile {
  width: 320px;
  height: 640px;
  border-radius: 40px;
}

.elite-mockup__header {
  height: 48px;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  padding: 0 16px;
  position: relative;
}

.elite-mockup__dots {
  display: flex;
  gap: 6px;
}

.elite-mockup__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
}

.elite-mockup__dots span:nth-child(1) { background: #ff5f56; }
.elite-mockup__dots span:nth-child(2) { background: #ffbd2e; }
.elite-mockup__dots span:nth-child(3) { background: #27c93f; }

.elite-mockup__url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 4px 16px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.elite-mockup__body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

.elite-mockup--mobile .app-sim-sidebar {
  display: none;
}

.app-sim-sidebar {
  width: 200px;
  border-right: 1px solid var(--color-border);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-sim-sidebar-item {
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.app-sim-sidebar-item.active {
  background: rgba(0, 122, 255, 0.1);
  color: var(--color-accent);
  font-weight: 600;
}

.app-sim-main {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fafafa;
}

.app-sim-prompt-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.app-sim-prompt-text {
  font-size: 14px;
  color: var(--color-text-muted);
  flex: 1;
  padding-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid transparent;
  animation: typing 3s steps(40, end) infinite alternate;
}

.app-sim-btn {
  background: var(--color-text);
  color: #fff;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* ─── Video Simulation CSS ─── */
.sim-video-container {
  flex: 1;
  position: relative;
  background: #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-input-frame, .sim-output-frame {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.sim-input-frame img, .sim-output-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  box-sizing: border-box;
  background: #ffffff;
}

.sim-input-split {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 20px;
  box-sizing: border-box;
  gap: 16px;
  background: #ffffff;
}

.sim-split-box {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: #fafafa;
}

.sim-split-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px !important;
}

.sim-split-tag {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--color-text);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.sim-input-label, .sim-output-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.sim-loader-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
}

.sim-loader-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top-color: var(--color-text);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.sim-loader-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* 
  Video Sequence Timeline (Total loop: 12 seconds)
  0-2s: Show Input
  2-4s: Typing Prompt (Input stays)
  4-5s: Generating (Loader fades in)
  5-9s: Reveal Output (Loader fades out, output fades in)
  9-12s: Output stays
  12s: Reset
*/

.sim-video-active .sim-input-frame {
  animation: vidInputPhase 12s forwards;
}
.sim-video-active .sim-loader-overlay {
  animation: vidLoaderPhase 12s forwards;
}
.sim-video-active .sim-output-frame {
  animation: vidOutputPhase 12s forwards;
}
.sim-video-active .app-sim-prompt-text {
  animation: vidTypingPhase 12s forwards;
}
.sim-video-active .app-sim-btn {
  animation: vidButtonPhase 12s forwards;
}

@keyframes vidInputPhase {
  0%, 30% { opacity: 1; transform: scale(1); }
  33%, 100% { opacity: 0; transform: scale(0.98); }
}

@keyframes vidLoaderPhase {
  0%, 31% { opacity: 0; }
  33%, 45% { opacity: 1; }
  47%, 100% { opacity: 0; }
}

@keyframes vidOutputPhase {
  0%, 45% { opacity: 0; transform: scale(1.02); }
  47%, 95% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0.98); }
}

@keyframes vidTypingPhase {
  0%, 15% { width: 0; border-right-color: transparent; }
  16%, 33% { width: 100%; border-right-color: var(--color-text); }
  34%, 95% { width: 100%; border-right-color: transparent; }
  100% { width: 0; border-right-color: transparent; }
}

@keyframes vidButtonPhase {
  0%, 32% { background: var(--color-text); color: #fff; }
  33%, 45% { background: var(--color-surface); color: var(--color-text-muted); }
  46%, 100% { background: var(--color-text); color: #fff; }
}

.app-sim-prompt-text {
  font-size: 14px;
  color: var(--color-text-muted);
  flex: 1;
  padding-left: 8px;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid transparent;
}

/* ─── Trusted Section ─── */
.elite-trusted {
  padding: 60px 20px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.elite-trusted__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 32px;
}

.elite-trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  opacity: 0.5;
  filter: grayscale(100%);
}

.elite-trusted__logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -1px;
}

/* ─── Stats Strip ─── */
.stats-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 20px;
}

.stats-strip__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 4px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

@media (max-width: 768px) {
  .stats-strip__inner {
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-item {
    width: 40%;
  }
  .stat-divider {
    display: none;
  }
}

/* ─── How It Works ─── */
.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
}

.how-step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.how-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}

.how-step__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.how-step__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}

.how-step__arrow {
  font-size: 24px;
  color: var(--color-border);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .how-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .how-step__arrow {
    transform: rotate(90deg);
    margin: 0;
  }
}

/* ─── Footer Extra ─── */
.social-icon {
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  color: var(--color-text);
  transform: translateY(-2px);
}

.footer-made-in {
  margin-left: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ─── Sections Shared ─── */
.elite-section {
  padding: 120px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.elite-section--gray {
  background: var(--color-surface);
  max-width: 100%;
}

.elite-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.elite-section__header {
  text-align: center;
  margin-bottom: 64px;
}

.elite-section__title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.elite-section__subtitle {
  font-size: 20px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── Bento Grid ─── */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 400px;
  gap: 24px;
}

.bento-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.bento-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card--wide {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
}

.bento-card__content {
  padding: 40px;
  position: relative;
  z-index: 2;
}

.bento-card__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.bento-card--large .bento-card__title {
  font-size: 36px;
  letter-spacing: -1px;
}

.bento-card__desc {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.bento-icon {
  width: 48px;
  height: 48px;
  background: var(--color-surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.bento-card__media {
  flex: 1;
  position: relative;
  background: var(--color-surface);
  overflow: hidden;
}

.bento-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card__media--contain img {
  object-fit: contain;
  padding: 24px;
  box-sizing: border-box;
}

.bento-card:hover .bento-card__media img {
  transform: scale(1.05);
}

.bento-card--wide .bento-card__media {
  height: 100%;
}

/* ─── Waitlist Masonry ─── */
.waitlist-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.waitlist-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--color-border);
  transition: var(--transition-smooth);
  position: relative;
  text-align: left;
}

.waitlist-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.waitlist-card__icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.waitlist-card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.waitlist-card__desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.waitlist-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.waitlist-card__meta .dot {
  width: 8px;
  height: 8px;
  background: #27c93f;
  border-radius: 50%;
}

.waitlist-btn {
  width: 100%;
  padding: 12px;
  background: var(--color-surface);
  color: var(--color-text);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.waitlist-btn:hover {
  background: var(--color-surface-hover);
}

/* ─── CTA ─── */
.elite-cta {
  padding: 120px 20px;
  text-align: center;
  background: var(--color-text);
  color: #fff;
}

.elite-cta__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 20px;
}

.elite-cta__subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
}

.elite-cta .landing-btn--primary {
  background: #fff;
  color: var(--color-text);
}

/* ─── Footer ─── */
.elite-footer {
  padding: 80px 20px 40px;
  border-top: 1px solid var(--color-border);
}

.elite-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.elite-footer__top {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 64px;
}

.elite-footer__desc {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-top: 16px;
  max-width: 300px;
}

.elite-footer__links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.elite-footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.elite-footer__col a {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  text-decoration: none;
  margin-bottom: 12px;
  cursor: pointer;
}

.elite-footer__col a:hover {
  color: var(--color-accent);
}

.elite-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ─── Modal ─── */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal__close {
  position: absolute;
  top: 20px; right: 20px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--color-surface);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

.modal__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.modal__subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
}

.modal-input:focus {
  outline: none;
  border-color: var(--color-text);
}

.modal-btn {
  background: var(--color-text);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
}

/* ─── Testimonial Marquee ─── */
.testimonial-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  animation: testimonialScroll 40s linear infinite;
  width: max-content;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 380px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ─── Pricing Section CSS ─── */
.pricing-toggle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.pricing-toggle {
  display: inline-flex;
  background: var(--color-surface);
  padding: 4px;
  border-radius: 100px;
  border: 1px solid var(--color-border);
}

.pricing-toggle-btn {
  background: transparent;
  border: none;
  padding: 8px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 100px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pricing-toggle-btn.active {
  background: #fff;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.pricing-toggle-discount {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card--featured {
  border: 2px solid var(--color-accent);
  box-shadow: var(--shadow-md);
}

.pricing-card__badge {
  position: absolute;
  top: -16px;
  right: 24px;
  background: var(--color-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
}

.pricing-card__plan-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.pricing-card__price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
}

.pricing-card__price .currency {
  font-size: 24px;
  font-weight: 700;
  align-self: flex-start;
  margin-top: 4px;
}

.pricing-card__price .amount {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
}

.pricing-card__price .period {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.pricing-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  background: transparent;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.pricing-btn:hover {
  background: var(--color-surface);
  border-color: var(--color-text);
}

.pricing-btn--featured {
  background: var(--color-accent);
  color: #fff;
  border: none;
}

.pricing-btn--featured:hover {
  background: var(--color-accent-hover);
  box-shadow: 0 8px 20px rgba(0, 122, 255, 0.25);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
}

.pricing-features li {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li .check {
  color: var(--color-text);
  font-weight: 700;
}

.pricing-trust-stripe {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 122, 255, 0.05);
  color: var(--color-accent);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(0, 122, 255, 0.1);
}

.avatar-group {
  display: flex;
}

.avatar-group img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-right: -8px;
}

.checkout-guarantee {
  display: flex;
  gap: 40px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* ─── Responsive ─── */
@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .bento-card--large, .bento-card--wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .bento-card--wide {
    flex-direction: column;
  }
  .bento-card--wide .bento-card__content {
    max-width: 100%;
  }
  .bento-card__media {
    min-height: 250px;
  }
  .waitlist-masonry {
    grid-template-columns: 1fr;
  }
  .elite-footer__top {
    grid-template-columns: 1fr;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .checkout-guarantee {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .elite-mockup--desktop {
    height: 480px;
  }
  .elite-mockup--desktop .app-sim-sidebar {
    display: none;
  }
  .sim-input-split {
    padding: 12px;
    gap: 12px;
  }
  .app-sim-main {
    padding: 16px;
  }
}

/* Mobile Mockup Toggle View Overrides */
.elite-mockup--mobile .app-sim-main {
  padding: 16px;
  gap: 16px;
}

.elite-mockup--mobile .sim-input-split {
  padding: 12px;
  gap: 12px;
}

.elite-mockup--mobile .sim-split-box img {
  padding: 4px !important;
}

.elite-mockup--mobile .sim-split-tag {
  font-size: 8px;
  padding: 2px 6px;
  top: 4px;
  right: 4px;
}

.elite-mockup--mobile .app-sim-prompt-box {
  padding: 8px;
}

.elite-mockup--mobile .app-sim-prompt-text {
  font-size: 12px;
}

.elite-mockup--mobile .app-sim-btn {
  padding: 6px 12px;
  font-size: 11px;
}

.elite-mockup--mobile .sim-input-label, 
.elite-mockup--mobile .sim-output-label {
  font-size: 10px;
  padding: 2px 8px;
  bottom: 8px;
  left: 8px;
}

/* ─── SEO Tool Hub Enhancements ─── */
.tool-showcase-container {
  max-width: 1060px;
  margin: 0 auto 60px;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.tool-preview-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}

@media (max-width: 768px) {
  .tool-preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.tool-preview-card {
  position: relative;
  background: #f5f5f7;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/5;
  border: 1px solid #e5e5ea;
}

.tool-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-preview-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tool-preview-tag--before {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
}

.tool-preview-tag--after {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.tool-preview-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 50%;
  font-size: 18px;
  color: #7c3aed;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin: 0 auto;
}

/* Compliance Specs Box */
.compliance-specs-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 28px;
  margin: 40px auto;
  max-width: 1060px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.spec-item {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

.spec-item__label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-item__value {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-top: 4px;
}

/* Comparison Table */
.comparison-table-wrapper {
  max-width: 1060px;
  margin: 40px auto;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e5e5ea;
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.seo-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.seo-compare-table th {
  padding: 16px 20px;
  font-weight: 800;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  color: #0f172a;
}

.seo-compare-table td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}

.seo-compare-table tr:last-child td {
  border-bottom: none;
}

.seo-compare-table tr:hover td {
  background: #f8fafc;
}

.seo-badge-win {
  color: #059669;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.seo-badge-loss {
  color: #dc2626;
  font-weight: 500;
}

/* Tool FAQ Accordion */
.tool-faq-card {
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 14px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.tool-faq-card summary {
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tool-faq-card summary::-webkit-details-marker {
  display: none;
}

.tool-faq-card summary::after {
  content: "+";
  font-size: 20px;
  color: #7c3aed;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.tool-faq-card[open] summary::after {
  content: "−";
}

.tool-faq-card p {
  padding: 0 24px 20px 24px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* ─── Interactive ROI Savings Calculator ─── */
.roi-calc-section {
  max-width: 1060px;
  margin: 60px auto;
  padding: 0 20px;
}

.roi-calc-card {
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 860px) {
  .roi-calc-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }
}

.roi-slider-container {
  margin: 28px 0;
}

.roi-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.roi-slider-label {
  font-size: 15px;
  font-weight: 600;
  color: #374151;
}

.roi-slider-badge {
  font-size: 22px;
  font-weight: 900;
  color: #7c3aed;
  background: #f5f3ff;
  padding: 4px 16px;
  border-radius: 100px;
  border: 1px solid #ddd6fe;
}

.roi-range-input {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: #e5e7eb;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
  accent-color: #7c3aed;
}

.roi-results-box {
  background: #0f172a;
  border-radius: 20px;
  padding: 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.roi-results-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(124, 58, 237, 0) 70%);
  border-radius: 50%;
}

.roi-savings-hero {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.roi-savings-label {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.roi-savings-amount {
  font-size: 38px;
  font-weight: 900;
  color: #34d399;
  letter-spacing: -1px;
  margin-top: 4px;
}

.roi-comparison-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.roi-stat-col {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
}

.roi-stat-label {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
}

.roi-stat-val {
  font-size: 18px;
  font-weight: 800;
  margin-top: 4px;
}

.roi-stat-val--loss {
  color: #f87171;
  text-decoration: line-through;
}

.roi-stat-val--win {
  color: #38bdf8;
}

/* ─── Model Diversity Showcase ─── */
.model-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.model-showcase-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease;
}

.model-showcase-card:hover {
  transform: translateY(-4px);
}

.model-showcase-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.model-showcase-info {
  padding: 16px;
}

.model-showcase-tag {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.model-showcase-title {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin: 6px 0 2px;
}

.model-showcase-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.4;
}

/* ─── Upgraded Trusted-By Logo Bar ─── */
.elite-trusted {
  padding: 28px 20px;
  border-bottom: 1px solid #f1f5f9;
}

.elite-trusted__label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.elite-trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.elite-trusted__logo {
  font-size: 15px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 1px;
  transition: color 0.2s;
  white-space: nowrap;
}

.elite-trusted__logo:hover {
  color: #475569;
}

.elite-trusted__logo-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color 0.2s;
  padding: 6px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  background: #fafafa;
}

.elite-trusted__logo-icon:hover {
  color: #475569;
  border-color: #cbd5e1;
}

/* ─── VS Comparison Table (Homepage) ─── */
.vs-compare-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.vs-compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e5ea;
  margin-top: 32px;
  background: #ffffff;
}

.vs-compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e5e5ea;
}

.vs-compare-table thead th:first-child {
  background: #f8fafc;
  color: #64748b;
}

.vs-compare-table thead th:nth-child(2) {
  background: #fef2f2;
  color: #dc2626;
}

.vs-compare-table thead th:nth-child(3) {
  background: #f0fdf4;
  color: #059669;
}

.vs-compare-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid #f1f5f9;
}

.vs-compare-table tr:last-child td {
  border-bottom: none;
}

.vs-compare-table tr:hover td {
  background: #f8fafc;
}

.vs-win {
  color: #059669;
  font-weight: 700;
}

.vs-loss {
  color: #dc2626;
  font-weight: 500;
}

/* ─── Trust & Security Badges ─── */
.security-badges-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  padding: 28px 20px;
  margin-top: 20px;
  border-top: 1px solid #f1f5f9;
}

.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  padding: 8px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
  background: #f8fafc;
  white-space: nowrap;
}

.security-badge__icon {
  font-size: 16px;
}

/* ─── Homepage FAQ Accordion ─── */
.homepage-faq-grid {
  max-width: 780px;
  margin: 32px auto 0;
}

.homepage-faq-item {
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.homepage-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.homepage-faq-item summary {
  padding: 18px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.homepage-faq-item summary::-webkit-details-marker {
  display: none;
}

.homepage-faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: #7c3aed;
  font-weight: 600;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.homepage-faq-item[open] summary::after {
  content: "−";
}

.homepage-faq-item .faq-answer {
  padding: 0 24px 18px 24px;
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* ─── Interactive Drag & Drop Preview Sandbox ─── */
.sandbox-widget {
  max-width: 920px;
  margin: 32px auto 0;
  background: #ffffff;
  border: 1px solid #e5e5ea;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
  font-family: 'Inter', sans-serif;
}

.sandbox-header {
  text-align: center;
  margin-bottom: 24px;
}

.sandbox-title {
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px;
}

.sandbox-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

.sandbox-samples-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.sandbox-sample-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sandbox-sample-btn:hover,
.sandbox-sample-btn.active {
  border-color: #7c3aed;
  background: #f5f3ff;
  color: #7c3aed;
}

.sandbox-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 16px;
  background: #fafafa;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
}

.sandbox-dropzone:hover,
.sandbox-dropzone.dragover {
  border-color: #7c3aed;
  background: #f5f3ff;
}

.sandbox-dropzone-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.sandbox-dropzone-text {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  margin: 0 0 4px;
}

.sandbox-dropzone-hint {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.sandbox-canvas-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: 400px;
  margin: 20px auto 0;
  border-radius: 16px;
  overflow: hidden;
  user-select: none;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.sandbox-img-before,
.sandbox-img-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sandbox-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  z-index: 2;
  border-right: 2px solid #ffffff;
}

.sandbox-after-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none !important;
  height: 100%;
  object-fit: contain;
}

.sandbox-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #ffffff;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.sandbox-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #7c3aed;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.sandbox-badge {
  position: absolute;
  bottom: 12px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 5;
  white-space: nowrap;
}

.sandbox-badge-before {
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
}

.sandbox-badge-after {
  left: 12px;
  background: #7c3aed;
  color: #ffffff;
}

/* User Upload Mode: Hide slider overlay & badges */
.sandbox-widget.is-user-upload .sandbox-after-wrapper,
.sandbox-widget.is-user-upload .sandbox-handle,
.sandbox-widget.is-user-upload .sandbox-badge {
  display: none !important;
}


.sandbox-cta-bar {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #f8fafc;
  padding: 16px 24px;
  border-radius: 14px;
  flex-wrap: wrap;
}

.sandbox-cta-status {
  font-size: 14px;
  font-weight: 700;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .sandbox-canvas-container {
    height: 280px;
  }
  .sandbox-cta-bar {
    flex-direction: column;
    text-align: center;
  }
}

/* ─── Hide Netlify Drawer & Powered By Badge ─── */
.netlify-badge,
#netlify-badge,
.netlify-drawer,
[data-netlify-drawer],
[id*="netlify"],
iframe[title*="Netlify"],
iframe[src*="netlify"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

