/* ============================================================
   Picsora — Landing Page Styles
   Design System: Figtree / Coral Rose / Violet / Warm White
   ============================================================ */

/* ----- Reset & Base ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Figtree', system-ui, -apple-system, sans-serif;
  background-color: #FDFCFB;
  color: #1A1A2E;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ----- Utility ----- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-accent {
  color: #F43F5E;
}

.text-white-accent {
  color: #FDE68A;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* ----- Badge ----- */
.badge {
  display: inline-block;
  background-color: #FFF1F2;
  color: #F43F5E;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* Centered badges in sections */
.problems .badge,
.features .badge,
.how-it-works .badge,
.trust-section .badge,
.testimonials .badge {
  display: block;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}


/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 252, 251, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
}

.logo-mark.light {
  background: linear-gradient(135deg, #FDA4AF, #F43F5E);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1A1A2E;
}

.logo-accent {
  color: #F43F5E;
}

.logo-accent-light {
  color: #FDA4AF;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #64748B;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #F43F5E;
  transform: translateX(-50%) scale(0);
  transition: transform 0.25s ease;
}

.nav-link:hover {
  color: #1A1A2E;
}

.nav-link:hover::after {
  transform: translateX(-50%) scale(1);
}

.nav-cta {
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1A1A2E;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #F43F5E, #E11D48);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
}

.btn-ghost {
  background: transparent;
  color: #1A1A2E;
  border: 1.5px solid #E2E8F0;
}

.btn-ghost:hover {
  border-color: #CBD5E1;
  background-color: #F8FAFC;
}

.btn-white {
  background: #fff;
  color: #1A1A2E;
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 7rem 0 4rem;
  background-color: #FDFCFB;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #64748B;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1A1A2E;
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.8125rem;
  color: #64748B;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 2.5rem;
  background-color: #E2E8F0;
}

/* Hero visual — Editor Mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-mockup {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
  animation: floatEditor 4s ease-in-out infinite alternate;
}

@keyframes floatEditor {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.editor-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: #FAFAFA;
  border-bottom: 1px solid #F1F5F9;
}

.toolbar-dots {
  display: flex;
  gap: 6px;
}

.toolbar-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.toolbar-dots span:nth-child(1) { background: #FCA5A5; }
.toolbar-dots span:nth-child(2) { background: #FDE68A; }
.toolbar-dots span:nth-child(3) { background: #86EFAC; }

.toolbar-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #94A3B8;
  letter-spacing: 0.02em;
}

.toolbar-actions {
  color: #94A3B8;
}

.editor-canvas {
  position: relative;
  background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-image {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.editor-badge-removed {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #10B981;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.editor-controls {
  display: flex;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  background: #FAFAFA;
  border-top: 1px solid #F1F5F9;
}

.control-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: #F1F5F9;
  color: #64748B;
  white-space: nowrap;
}

.control-chip.active {
  background: #F43F5E;
  color: #fff;
}

.control-chip svg {
  flex-shrink: 0;
}


/* ============================================================
   PROBLEMS
   ============================================================ */
.problems {
  padding: 5rem 0;
  background-color: #fff;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.problem-card {
  background: var(--card-gradient);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.problem-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.problem-x {
  opacity: 0.5;
}

.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: #1A1A2E;
}

.problem-card p {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.6;
}


/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 5rem 0;
  background-color: #FFF8F8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
  border-bottom: 3px solid var(--bottom-color, #F43F5E);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--fi-bg, #FFF1F2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #1A1A2E;
}

.feature-card p {
  font-size: 0.9375rem;
  color: #64748B;
  line-height: 1.6;
}


/* ============================================================
   HOW IT WORKS — Steps Zigzag
   ============================================================ */
.how-it-works {
  padding: 5rem 0;
  background-color: #fff;
}

.steps-zigzag {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.step-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.step-number-bg {
  position: absolute;
  font-size: 8rem;
  font-weight: 800;
  color: #FFF1F2;
  line-height: 1;
  z-index: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
}

/* step-left: content on left, visual on right */
.step-left .step-number-bg {
  left: -1rem;
}

.step-left .step-content {
  position: relative;
  z-index: 1;
}

.step-left .step-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* step-right: visual on left, content on right */
.step-right .step-number-bg {
  right: -1rem;
}

.step-right .step-visual {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-right .step-content {
  position: relative;
  z-index: 1;
}

.step-badge {
  display: inline-block;
  background-color: #FFF1F2;
  color: #F43F5E;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-content h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 0.625rem;
}

.step-content p {
  font-size: 1rem;
  color: #64748B;
  line-height: 1.7;
  max-width: 420px;
}

.step-image-wrap {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 340px;
}

.step-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.step-image-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #F43F5E;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.step-image-badge.editing {
  background: #8B5CF6;
}

.step-image-badge.success {
  background: #10B981;
}


/* ============================================================
   TRUST
   ============================================================ */
.trust-section {
  padding: 5rem 0;
  background-color: #FAFAFF;
}

.trust-strip {
  display: flex;
  gap: 1.5rem;
}

.trust-strip > * {
  flex: 1;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}

.trust-icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 0.75rem;
  background-color: var(--tw-bg, #FFF1F2);
  color: var(--tw-color, #F43F5E);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 0.125rem;
}

.trust-item p {
  font-size: 0.8125rem;
  color: #64748B;
  line-height: 1.4;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 5rem 0;
  background-color: #fff;
}

.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border: 2px solid #F1F5F9;
  border-radius: 1rem;
  padding: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
}

.testimonial-card.featured {
  transform: scale(1.03);
  border-color: #FDA4AF;
  box-shadow: 0 8px 30px rgba(244, 63, 94, 0.1);
}

.testimonial-card.featured:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 12px 36px rgba(244, 63, 94, 0.15);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-card > p {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--ta-bg, #FFF1F2);
  color: var(--ta-color, #F43F5E);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
}

.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1A1A2E;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: #94A3B8;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #F43F5E, #BE123C);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-content > p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: #1E1B4B;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand > p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.625rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #FDA4AF;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: #FDA4AF;
}


/* ============================================================
   POP-EL — Scroll Reveal Animation (Scale from center)
   ============================================================ */
.pop-el {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.pop-el.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.pop-el:nth-child(2) { transition-delay: 0.1s; }
.pop-el:nth-child(3) { transition-delay: 0.2s; }
.pop-el:nth-child(4) { transition-delay: 0.3s; }
.pop-el:nth-child(5) { transition-delay: 0.4s; }
.pop-el:nth-child(6) { transition-delay: 0.5s; }

/* Keep featured testimonial scale when also visible */
.testimonial-card.featured.pop-el.visible {
  transform: scale(1.03);
}


/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-text {
    align-items: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: 2;
  }

  .editor-mockup {
    max-width: 440px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-row .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}


/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 252, 251, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu .nav-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1A1A2E;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero {
    padding: 6rem 0 3rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .editor-mockup {
    max-width: 100%;
  }

  .editor-image {
    max-height: 200px;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* Steps — all single column */
  .step-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .step-number-bg {
    font-size: 5rem;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%);
  }

  .step-content {
    order: 2;
  }

  .step-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .step-visual {
    order: 1;
    justify-content: center;
  }

  /* Trust — 2x2 grid */
  .trust-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  /* Testimonials single column */
  .testimonials-row {
    grid-template-columns: 1fr;
  }

  .testimonials-row .testimonial-card:last-child {
    max-width: none;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}


/* ============================================================
   RESPONSIVE — Small Mobile (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-item strong {
    font-size: 1.25rem;
  }

  .editor-controls {
    flex-wrap: wrap;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .step-number-bg {
    font-size: 4rem;
  }
}


/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .pop-el {
    opacity: 1 !important;
    transform: none !important;
  }

  .navbar {
    position: relative;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff;
    box-shadow: none;
    border-bottom: 1px solid #E2E8F0;
  }

  .hamburger,
  .nav-cta {
    display: none !important;
  }

  .hero {
    padding-top: 2rem;
  }

  .editor-mockup {
    animation: none;
  }

  .cta-section {
    background: #F8F8F8 !important;
    color: #1A1A2E !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .cta-content h2,
  .cta-content p {
    color: #1A1A2E !important;
  }

  .text-white-accent {
    color: #F43F5E !important;
  }

  .btn-white {
    border: 1px solid #E2E8F0;
  }

  .btn-outline-white {
    border-color: #E2E8F0;
    color: #1A1A2E !important;
  }

  .footer {
    background: #F8F8F8 !important;
    color: #1A1A2E !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .footer-col a,
  .footer-brand > p,
  .footer-bottom {
    color: #475569 !important;
  }

  .footer-brand .logo-text {
    color: #1A1A2E !important;
  }
}

/* === Cube AI Badge === */
.cube-ai-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.cube-ai-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 20px 8px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.cube-ai-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(6,182,212,0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cube-ai-link:hover::before { opacity: 1; }
.cube-ai-link:hover {
    border-color: rgba(139,92,246,0.3);
    box-shadow: 0 0 30px rgba(139,92,246,0.15), 0 0 60px rgba(6,182,212,0.08);
    transform: translateY(-1px);
}
.cube-3d {
    width: 20px;
    height: 20px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-25deg) rotateY(30deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cube-ai-link:hover .cube-3d {
    transform: rotateX(-25deg) rotateY(210deg);
}
.cube-face {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1.5px solid rgba(139,92,246,0.6);
    border-radius: 3px;
}
.cube-face.front  { transform: translateZ(10px); background: rgba(139,92,246,0.15); }
.cube-face.back   { transform: translateZ(-10px) rotateY(180deg); background: rgba(6,182,212,0.1); }
.cube-face.top    { transform: rotateX(90deg) translateZ(10px); background: rgba(139,92,246,0.2); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(10px); background: rgba(6,182,212,0.05); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(10px); background: rgba(6,182,212,0.1); }
.cube-face.right  { transform: rotateY(90deg) translateZ(10px); background: rgba(139,92,246,0.1); border-color: rgba(6,182,212,0.5); }
.cube-ai-made {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}
.cube-ai-name {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.01em;
    position: relative;
    z-index: 1;
}
.cube-ai-arrow {
    width: 14px;
    height: 14px;
    color: rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}
.cube-ai-link:hover .cube-ai-arrow {
    color: #8B5CF6;
    transform: translate(2px, -2px);
}
