/* ═══════════════════════════════════════════════════════
   MiniMkt Landing — Jester-inspired design V2
   All agent review fixes applied
   ═══════════════════════════════════════════════════════ */

:root {
  --primary: #1E1E1E;
  --green: #59AC73;
  --green-light: #E8F5E9;
  --green-dark: #3D8B56;
  --yellow: #F9BB1C;
  --yellow-light: #FFF8E1;
  --blue: #3B82F6;
  --red: #EF4444;
  --bg: #FFFFFF;
  --bg-soft: #F8FAF9;
  --bg-section: #FAFBFC;
  --text: #1E1E1E;
  --text-secondary: #64748B;
  --text-tertiary: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.04), 0 0 0 1px rgba(0,0,0,0.03);
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --container: 1280px;
  --nav-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 12px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active {
  transform: translateY(0) scale(0.97) !important;
  transition: transform 0.1s ease;
}

.btn-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 16px rgba(89,172,115,0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(89,172,115,0.4);
}

.btn-outline {
  border: 2px solid var(--border);
  color: var(--text);
  background: white;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  background: rgba(0,0,0,0.04);
}
.btn-ghost:hover {
  background: rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

.btn-arrow { transition: transform 0.25s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ═══════════════════ NAVBAR (Floating Dark Pill) ═══════════════════ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  height: 72px;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.95);
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 8px 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 24px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.25s ease;
  position: relative;
}
.nav-link::after { display: none; }

.nav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-actions .btn-outline {
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  background: transparent;
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
}
.nav-actions .btn-outline:hover {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
  background: rgba(255,255,255,0.06);
  transform: none;
}

.nav-actions .btn-primary {
  border-radius: 50px;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(89,172,115,0.4), 0 0 40px rgba(89,172,115,0.15);
  letter-spacing: -0.2px;
}
.nav-actions .btn-primary:hover {
  transform: none;
  box-shadow: 0 6px 28px rgba(89,172,115,0.5), 0 0 50px rgba(89,172,115,0.2);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}
.hamburger span {
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all 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); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 24px 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.active { display: flex; }
.mobile-link {
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.mobile-actions .btn { justify-content: center; }

/* ═══════════════════ HERO (Dark Cinematic) ═══════════════════ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 120px;
  background: #0A0A0F;
  overflow: clip;
}

/* Navbar is always dark — no color overrides needed */

/* Animated gradient glow blobs */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  opacity: 0.5;
}
.hero-glow-1 {
  width: 600px;
  height: 600px;
  top: -180px;
  right: -100px;
  background: radial-gradient(circle, rgba(89,172,115,0.35) 0%, transparent 70%);
  animation: glow-drift-1 10s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
  animation: glow-drift-2 12s ease-in-out infinite;
}
.hero-glow-3 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: 30%;
  background: radial-gradient(circle, rgba(249,187,28,0.12) 0%, transparent 70%);
  animation: glow-drift-3 8s ease-in-out infinite;
}

@keyframes glow-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 20px) scale(1.1); }
}
@keyframes glow-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -15px) scale(1.05); }
}
@keyframes glow-drift-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-15px, -25px) scale(1.15); opacity: 0.7; }
}

/* Grid pattern overlay */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--green), #7EDCA0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.hero-description {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-hero-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 4px 24px rgba(89,172,115,0.35), 0 0 60px rgba(89,172,115,0.15);
}
.btn-hero-primary:hover {
  background: #4BA366;
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(89,172,115,0.45), 0 0 80px rgba(89,172,115,0.2);
}

.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  background: transparent;
}
.btn-hero-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: rgba(255,255,255,0.05);
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.trust-avatars { display: flex; }
.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
  border: 2px solid rgba(255,255,255,0.1);
  margin-left: -8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.trust-avatar:first-child { margin-left: 0; }

.trust-text { font-size: 14px; color: rgba(255,255,255,0.45); }
.trust-count { font-weight: 700; color: rgba(255,255,255,0.85); }

/* ── Hero Visual — full width below text like Jester ── */
.hero-visual-wrap {
  position: relative;
  z-index: 2;
  margin-top: 60px;
}

.hero-visual {
  position: relative;
  perspective: 2100px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Jester-style floating elements ── */
.hero-ui-element {
  position: absolute;
  z-index: 10;
  animation: float-ui 5s ease-in-out infinite;
}
/* Spread across the full dark space — positioned away from dashboard */
.hero-ui-1 { top: -30px; left: 2%; animation-delay: 0s; }
.hero-ui-2 { top: -40px; right: 1%; animation-delay: 0.8s; }
.hero-ui-3 { bottom: 35%; left: 0; animation-delay: 1.8s; }
.hero-ui-4 { top: 15%; right: 0; animation-delay: 1.2s; }
.hero-ui-5 { bottom: 8%; left: 3%; animation-delay: 2.2s; }

@keyframes float-ui {
  0%, 100% { transform: translateY(0) rotate(var(--float-rot, 0deg)); }
  50% { transform: translateY(-14px) rotate(var(--float-rot, 0deg)); }
}

/* Icon cluster — like Jester's top-left icons */
.ui-icon-cluster {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.8);
  transform: rotate(-8deg);
  --float-rot: -8deg;
}
.ui-icon-cluster svg {
  width: 24px;
  height: 24px;
}
.ui-icon-cluster-alt {
  transform: rotate(5deg);
  --float-rot: 5deg;
}

/* Badge card — like "42 suscriptores activos" */
.ui-badge-card {
  background: linear-gradient(135deg, #3B82F6, #2563EB);
  padding: 16px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(59,130,246,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  transform: rotate(6deg);
  --float-rot: 6deg;
}
.ui-badge-number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.ui-badge-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Sticky notes — like Jester's "overdue bro!" */
.ui-sticky-note {
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-heading);
  white-space: nowrap;
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  letter-spacing: -0.3px;
}
.ui-sticky-green {
  background: linear-gradient(135deg, #86EFAC, #4ADE80);
  color: #14532D;
  transform: rotate(14deg);
  --float-rot: 14deg;
}
.ui-sticky-yellow {
  background: linear-gradient(135deg, #FDE68A, #FBBF24);
  color: #78350F;
  transform: rotate(-10deg);
  --float-rot: -10deg;
}

/* Action card — like Jester's "+ Add a new list" */
.ui-action-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.95);
  padding: 14px 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  color: #1E1E1E;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  white-space: nowrap;
  font-family: var(--font-heading);
}
.ui-action-plus {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Dashboard Mockup ── */
.hero-dashboard-wrap {
  position: relative;
}

.hero-dashboard {
  background: #F8FAFC;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  overflow: hidden;
  transition: transform 0.6s ease;
}

/* Chrome bar */
.dash-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #1E1E1E;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.dash-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}
.dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dots span:nth-child(1) { background: #FF5F57; }
.dash-dots span:nth-child(2) { background: #FEBC2E; }
.dash-dots span:nth-child(3) { background: #28C840; }

.dash-url {
  flex: 1;
  margin-left: 8px;
  padding: 4px 14px;
  background: rgba(255,255,255,0.08);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}

.dash-user { flex-shrink: 0; }
.dash-user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
}

.dash-sidebar-logo {
  padding: 12px 10px 8px;
}
.dash-logo-img {
  height: 18px;
  width: auto;
}

/* Dashboard body */
.dash-body {
  display: flex;
  min-height: 280px;
}

.dash-sidebar {
  width: 170px;
  padding: 0 8px 12px;
  border-right: 1px solid rgba(255,255,255,0.06);
  background: #1E1E1E;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.dash-nav-section {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.25);
  padding: 10px 10px 4px;
  font-family: var(--font-heading);
}

.dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  cursor: default;
  transition: all 0.2s;
}
.dash-nav-item span { white-space: nowrap; }
.dash-nav-item.active {
  background: rgba(89,172,115,0.15);
  color: var(--green);
}
.dash-nav-item svg {
  flex-shrink: 0;
  opacity: 0.5;
}
.dash-nav-item.active svg {
  opacity: 1;
  color: var(--green);
}

.dash-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 6px 4px;
}

/* Main content area — light theme */
.dash-main {
  flex: 1;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  background: #F8FAFC;
}

.dash-page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-page-title {
  font-size: 16px;
  font-weight: 700;
  color: #1E1E1E;
  font-family: var(--font-heading);
}
.dash-page-subtitle {
  font-size: 11px;
  color: #94A3B8;
  font-weight: 500;
}

/* Stat cards row — 4 cards like real app */
.dash-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.dash-stat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dash-stat-title {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
}

.dash-stat-num {
  font-size: 20px;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #1E1E1E;
  letter-spacing: -0.5px;
}

/* Chart area — light */
.dash-chart-area {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 16px;
  flex: 1;
}

.dash-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.dash-chart-title {
  font-size: 13px;
  font-weight: 600;
  color: #1E1E1E;
  font-family: var(--font-heading);
}

.dash-chart-legend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #94A3B8;
}

.legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dash-chart-svg {
  overflow: hidden;
  border-radius: 6px;
}

.dash-chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 10px;
  color: #94A3B8;
  font-weight: 500;
}

/* Orders table — light */
.dash-orders {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 16px;
}

.dash-orders-title {
  font-size: 13px;
  font-weight: 600;
  color: #1E1E1E;
  font-family: var(--font-heading);
  margin-bottom: 10px;
}

.dash-order-row {
  display: grid;
  grid-template-columns: 55px 1fr 55px 70px 75px;
  gap: 8px;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 11px;
}
.dash-order-row:last-child { border-bottom: none; }

.dash-order-id {
  color: #94A3B8;
  font-weight: 500;
  font-family: var(--font-heading);
}
.dash-order-client { color: #1E1E1E; font-weight: 500; }
.dash-order-items { color: #94A3B8; font-size: 10px; }
.dash-order-amount {
  color: #1E1E1E;
  font-weight: 700;
  font-family: var(--font-heading);
  text-align: right;
}
.dash-order-status {
  text-align: center;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
}
.dash-status-ready {
  background: rgba(89,172,115,0.1);
  color: var(--green);
}
.dash-status-progress {
  background: rgba(59,130,246,0.1);
  color: var(--blue);
}
.dash-status-warning {
  background: rgba(232,108,58,0.1);
  color: #E86C3A;
}

/* Dashboard reflection glow */
.dash-reflection {
  position: absolute;
  bottom: -60px;
  left: 10%;
  right: 10%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(89,172,115,0.15) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

/* Jester-style cursors with colored name bubbles */
.hero-cursor, .cta-cursor {
  position: absolute;
  z-index: 15;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.hero-cursor-1 { top: 38%; right: 3%; }
.hero-cursor-2 { bottom: 12%; right: 15%; }
.cursor-svg {
  flex-shrink: 0;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.5));
  width: 22px;
  height: 26px;
}
.cursor-bubble {
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
  margin-top: 14px;
}

/* ═══════════════════ SECTION HEADERS ═══════════════════ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ═══════════════════ FEATURES ═══════════════════ */
.features {
  padding: 120px 0;
  background: var(--bg);
}

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

/* Jester-style feature cards with colored backgrounds + mini mockups */
.feature-card-jester {
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.feature-card-jester:hover {
  transform: translateY(-8px);
}

.feature-mockup-wrap {
  border-radius: 20px;
  padding: 32px 24px 0;
  margin-bottom: 24px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  min-height: 260px;
  align-items: flex-end;
}

.feature-mini-app {
  background: white;
  border-radius: 14px 14px 0 0;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
  width: 100%;
  overflow: hidden;
}

.mini-app-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: #1E1E1E;
}
.mini-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mini-app-title {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-left: 8px;
}
.mini-app-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 160px;
}
.mini-app-dark {
  background: #1A1A2E;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  padding: 10px 8px;
  border-bottom: 1px solid #F1F5F9;
  font-weight: 500;
}
.mini-row:last-child { border-bottom: none; }
.mini-tag {
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.mini-subtle {
  margin-left: auto;
  color: #94A3B8;
  font-size: 12px;
  font-weight: 500;
}

.mini-pos-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mini-pos-item:last-of-type { border-bottom: none; }
.mini-pos-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 700;
  color: white;
  padding: 12px 8px 4px;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.mini-chart-bar {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 90px;
  padding: 0 8px;
}
.mini-bar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  min-height: 8px;
}
.mini-stock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #EF4444;
  font-weight: 600;
  margin-top: 8px;
  padding: 6px 8px;
  background: rgba(239,68,68,0.06);
  border-radius: 6px;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ═══════════════════ WORKFLOW ═══════════════════ */
.workflow {
  padding: 120px 0;
  background: var(--bg-section);
}

.workflow-icons-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.workflow-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 16px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  cursor: default;
}
.workflow-icon-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green);
}

.workflow-icon-circle {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: all 0.3s ease;
}
.workflow-icon-item:hover .workflow-icon-circle {
  background: var(--green);
  color: white;
}

.workflow-icon-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.workflow-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.workflow-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.workflow-text p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}
.workflow-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.workflow-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

/* Stacked images */
.workflow-images { position: relative; height: 460px; }
.workflow-image-stack { position: relative; width: 100%; height: 100%; }
.stack-card {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
}
.stack-card-1 { top: 0; left: 0; width: 280px; z-index: 3; }
.stack-card-2 { top: 20px; right: 0; width: 270px; z-index: 2; }
.stack-card-3 { bottom: 0; left: 10px; width: 260px; z-index: 1; }
.stack-card:hover { transform: translateY(-4px) !important; z-index: 5; box-shadow: 0 16px 50px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.08); }

/* ── Phone Mockup (Recurrencias) ── */
.wf-phone {
  background: #FAFAFA;
  border-radius: 20px;
  overflow: hidden;
}
.wf-phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #1E1E1E;
}
.wf-phone-notch {
  width: 80px;
  height: 22px;
  background: #1E1E1E;
  border-radius: 0 0 16px 16px;
}
.wf-phone-icons { display: flex; gap: 4px; color: #1E1E1E; }
.wf-phone-content { padding: 12px 16px 16px; }
.wf-phone-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #1E1E1E;
  margin-bottom: 2px;
}
.wf-phone-subtitle {
  font-size: 12px;
  color: #888;
  margin-bottom: 14px;
}
.wf-recurrence-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.wf-recurrence-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
}
.wf-rec-icon { font-size: 22px; flex-shrink: 0; }
.wf-rec-info { flex: 1; min-width: 0; }
.wf-rec-name { font-size: 12px; font-weight: 600; color: #1E1E1E; line-height: 1.3; }
.wf-rec-freq { font-size: 10px; color: #999; margin-top: 1px; }
.wf-rec-badge {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-shrink: 0;
}
.wf-badge-active { background: #DEF7E4; color: #2D8A4E; }
.wf-badge-paused { background: #FEF3C7; color: #A16207; }
.wf-next-delivery {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #E8F5E9;
  border-radius: 12px;
  font-size: 11px;
  color: #2D6A3F;
}
.wf-next-delivery strong { color: #1E6B35; }

/* ── Dashboard Card (Revenue) ── */
.wf-dashboard-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
}
.wf-dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.wf-dash-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #1E1E1E;
}
.wf-dash-period {
  font-size: 11px;
  color: #999;
  background: #F5F5F5;
  padding: 3px 10px;
  border-radius: 20px;
}
.wf-dash-amount {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #1E1E1E;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.wf-dash-change {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: #59AC73;
  font-weight: 600;
  margin-bottom: 12px;
}
.wf-dash-chart { margin-bottom: 14px; }
.wf-area-chart { width: 100%; height: 60px; display: block; }
.wf-dash-stats-row {
  display: flex;
  gap: 8px;
}
.wf-dash-stat {
  flex: 1;
  text-align: center;
  padding: 8px 4px;
  background: #F8F9FA;
  border-radius: 10px;
}
.wf-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #1E1E1E;
  line-height: 1.3;
}
.wf-stat-label {
  display: block;
  font-size: 9px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* ── Activity Feed Card ── */
.wf-activity-card {
  background: white;
  border-radius: 20px;
  padding: 18px;
}
.wf-activity-title {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: #1E1E1E;
  margin-bottom: 14px;
}
.wf-activity-feed { display: flex; flex-direction: column; gap: 12px; }
.wf-activity-item { display: flex; gap: 10px; align-items: flex-start; }
.wf-activity-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 5px;
  flex-shrink: 0;
}
.wf-dot-green { background: #59AC73; }
.wf-dot-blue { background: #3B82F6; }
.wf-dot-yellow { background: #F9BB1C; }
.wf-activity-text {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
}
.wf-activity-text strong { color: #1E1E1E; font-weight: 600; }
.wf-activity-time {
  display: block;
  font-size: 10px;
  color: #BBB;
  margin-top: 1px;
}

/* ═══════════════════ MARQUEE TICKER ═══════════════════ */
.marquee-section {
  padding: 50px 0;
  overflow: hidden;
  background: var(--bg);
}

.marquee-track-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}

.marquee-track.reverse {
  animation: marquee-scroll-reverse 35s linear infinite;
}

.marquee-item {
  flex-shrink: 0;
  padding: 10px 24px;
  background: white;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.marquee-item:hover {
  border-color: var(--green);
  color: var(--green);
}

.marquee-dot {
  background: none;
  border: none;
  padding: 10px 4px;
  color: var(--border);
  font-size: 20px;
}

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

@keyframes marquee-scroll-reverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ═══════════════════ STATS (2-column like Jester) ═══════════════════ */
.stats {
  padding: 100px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}

.stats-bg-blur {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(89,172,115,0.1) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.stats-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.stats-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--primary);
  margin-bottom: 16px;
}

.stats-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.stats-numbers {
  display: flex;
  gap: 40px;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.stats-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stats-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
}
.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.stats-card-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stats-card-val {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stats-card-lbl {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ═══════════════════ BENEFITS (2-column like Jester) ═══════════════════ */
.benefits {
  padding: 120px 0;
  background: var(--bg);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-row {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  transition: all 0.35s ease;
  cursor: default;
}
.benefit-row:hover {
  background: var(--bg-section);
  transform: translateX(4px);
}

.benefit-row-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: all 0.3s ease;
}
.benefit-row:hover .benefit-row-icon {
  background: var(--green);
  color: white;
}

.benefit-row h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}
.benefit-row p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.benefits-visual {
  display: flex;
  justify-content: center;
}

.benefits-mockup {
  max-width: 320px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

/* ═══════════════════ PRICING ═══════════════════ */
.pricing {
  padding: 120px 0;
  background: var(--bg-section);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: color 0.3s ease;
}
.toggle-label.active { color: var(--text); }

.toggle-discount {
  display: inline-block;
  padding: 2px 8px;
  background: var(--green-light);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
}

.toggle-switch {
  width: 48px;
  height: 28px;
  background: var(--green);
  border-radius: 50px;
  padding: 3px;
  cursor: pointer;
}
.toggle-thumb {
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.toggle-switch.active .toggle-thumb { transform: translateX(20px); }

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

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Featured card: light green tint (NOT dark, matching Jester) */
.pricing-card-featured {
  background: linear-gradient(135deg, #F0F9F2 0%, #E8F5E9 100%);
  border: 2px solid var(--green);
  box-shadow: 0 8px 32px rgba(89,172,115,0.15);
}
.pricing-card-featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(89,172,115,0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 28px;
}
.price-currency { font-size: 20px; font-weight: 600; }
.price-amount {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
}
.price-period { font-size: 14px; color: var(--text-tertiary); margin-left: 4px; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq {
  padding: 120px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-card);
}
.faq-item:hover { box-shadow: var(--shadow); }
.faq-item.active { box-shadow: 0 8px 30px rgba(228,232,239,0.5); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  transition: color 0.3s ease;
}

.faq-num {
  color: var(--text-tertiary);
  font-weight: 600;
  margin-right: 8px;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-icon span {
  position: absolute;
  background: var(--text-tertiary);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-icon span:first-child { width: 14px; height: 2px; top: 11px; left: 5px; }
.faq-icon span:last-child { width: 2px; height: 14px; top: 5px; left: 11px; }
.faq-item.active .faq-icon span:last-child { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials {
  padding: 120px 0 100px;
  background: var(--bg-section);
  overflow: hidden;
}

.testimonials-slider { margin-top: 0; padding: 0 24px; }
.testimonials-swiper { overflow: visible !important; }

.swiper-slide {
  height: auto !important;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

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

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 600; font-family: var(--font-heading); }
.author-role { font-size: 13px; color: var(--text-tertiary); }

/* ═══════════════════ NEWSLETTER ═══════════════════ */
.newsletter {
  padding: 100px 0;
  background: var(--bg);
}

.newsletter-card {
  background: var(--primary);
  border-radius: 24px;
  padding: 60px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(89,172,115,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-card h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  position: relative;
}
.newsletter-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  background: rgba(255,255,255,0.08);
  color: white;
  transition: border-color 0.3s ease;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--green); }

/* ═══════════════════ CTA FINAL ═══════════════════ */
.cta-final {
  padding: 140px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(89,172,115,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape { position: absolute; border-radius: 50%; }
.cta-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, rgba(89,172,115,0.1) 0%, transparent 70%);
}
.cta-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -50px;
  background: radial-gradient(circle, rgba(249,187,28,0.08) 0%, transparent 70%);
}

.cta-final-inner { position: relative; z-index: 2; }
.cta-final h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
}
.cta-final p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-final-actions { display: flex; justify-content: center; gap: 16px; }

.cta-cursor-1 { top: 25%; left: 10%; }
.cta-cursor-2 { bottom: 25%; right: 10%; }

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  padding: 80px 0 40px;
  background: #0F0F0F;
  color: rgba(255,255,255,0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand .logo-img { height: 28px; }

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.social-link:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

.footer-links-group h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}
.footer-links-group a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 6px 0;
  transition: all 0.3s ease;
  position: relative;
  width: fit-content;
}
.footer-links-group a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s ease;
}
.footer-links-group a:hover { color: var(--green); }
.footer-links-group a:hover::after { width: 100%; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════ REVEAL ANIMATIONS ═══════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */

/* ── Tablet / small desktop ── */
@media (max-width: 1024px) {
  .hero-ui-element { display: none; }
  .hero-cursor { display: none; }
  .dash-sidebar { width: 120px; }
  .dash-nav-item span { display: none; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-icons-grid { grid-template-columns: repeat(3, 1fr); }
  .workflow-showcase { grid-template-columns: 1fr; gap: 40px; }
  .stats-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-numbers { justify-content: center; }
  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-visual { order: -1; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .container { padding: 0 16px; }

  /* Navbar — compact pill */
  .navbar {
    height: 56px;
    top: 10px;
    width: calc(100% - 24px);
  }
  .nav-inner { padding: 0 6px 0 16px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 20px; }

  /* Mobile menu polish */
  .mobile-menu {
    border-radius: 0 0 24px 24px;
  }

  /* Hero — mobile-optimized */
  .hero {
    padding: calc(var(--nav-h) + 32px) 0 48px;
  }
  .hero-title {
    font-size: 28px;
    letter-spacing: -1px;
    line-height: 1.12;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 12px;
  }
  .hero-description {
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 15px;
  }
  .hero-trust { gap: 10px; }
  .trust-avatar { width: 32px; height: 32px; font-size: 11px; }
  .trust-text { font-size: 13px; }

  /* Hero visuals */
  .hero-visual-wrap { margin-top: 32px; }
  .hero-glow { filter: blur(80px); opacity: 0.25; }
  .hero-glow-1 { width: 300px; height: 300px; }
  .hero-glow-2 { width: 250px; height: 250px; }
  .hero-glow-3 { width: 200px; height: 200px; }

  /* Dashboard mockup — simplified for mobile */
  .dash-sidebar { display: none; }
  .dash-chrome { padding: 8px 12px; }
  .dash-dots span { width: 8px; height: 8px; }
  .dash-url { font-size: 10px; padding: 3px 10px; }
  .dash-user-avatar { width: 22px; height: 22px; font-size: 9px; }
  .dash-main { padding: 12px; gap: 10px; }
  .dash-page-title { font-size: 14px; }
  .dash-page-subtitle { font-size: 10px; }
  .dash-stat-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .dash-stat-card { padding: 10px; }
  .dash-stat-icon { width: 28px; height: 28px; border-radius: 6px; }
  .dash-stat-icon svg { width: 14px; height: 14px; }
  .dash-stat-title { font-size: 10px; }
  .dash-stat-num { font-size: 16px; }
  .dash-chart-area { padding: 12px; }
  .dash-chart-title { font-size: 11px; }
  .dash-chart-legend { font-size: 9px; }
  .dash-chart-labels span { font-size: 9px; }
  .dash-orders-title { font-size: 12px; }
  .dash-order-row {
    grid-template-columns: 45px 1fr 55px;
    font-size: 11px;
    padding: 8px 0;
  }
  .dash-order-items, .dash-order-amount { display: none; }
  .dash-order-status { font-size: 10px; padding: 3px 8px; }

  /* Sections — tighter spacing */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 26px; letter-spacing: -0.5px; }
  .section-subtitle { font-size: 14px; }
  .features { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-mockup-wrap { min-height: 220px; padding: 24px 16px 0; }
  .feature-title { font-size: 18px; }
  .feature-desc { font-size: 14px; }

  /* Workflow */
  .workflow { padding: 80px 0; }
  .workflow-icons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 48px;
  }
  .workflow-icon-item { padding: 16px 8px; }
  .workflow-icon-item span { font-size: 12px; }
  .workflow-text h3 { font-size: 22px; }
  .workflow-text p { font-size: 14px; }
  .workflow-checklist li { font-size: 14px; }
  .workflow-images { height: auto; }
  .stack-card-1, .stack-card-2, .stack-card-3 {
    position: relative;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  .workflow-image-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  /* Stats */
  .stats { padding: 80px 0; }
  .stats-title { font-size: 24px; }
  .stats-desc { font-size: 14px; }
  .stats-numbers { flex-direction: column; gap: 20px; }
  .stat-number { font-size: 40px; }
  .stats-visuals { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Benefits */
  .benefits { padding: 80px 0; }
  .benefit-row { padding: 20px; }
  .benefit-row h3 { font-size: 17px; }
  .benefit-row p { font-size: 14px; }

  /* Pricing */
  .pricing { padding: 80px 0; }
  .pricing-card { padding: 28px; }

  /* FAQ */
  .faq { padding: 80px 0; }
  .faq-question { padding: 18px 16px; font-size: 15px; }
  .faq-answer p { padding: 0 16px 16px; font-size: 14px; }

  /* Testimonials */
  .testimonials { padding: 80px 0 60px; }
  .testimonial-card { padding: 24px; }
  .testimonial-text { font-size: 14px; }

  /* Newsletter */
  .newsletter { padding: 60px 0; }
  .newsletter-card { padding: 36px 20px; border-radius: 20px; }
  .newsletter-card h2 { font-size: 22px; }
  .newsletter-form { flex-direction: column; }

  /* CTA final */
  .cta-final { padding: 80px 0; }
  .cta-final-inner h2 { font-size: 26px; }
  .cta-final-inner p { font-size: 14px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .hero-subtitle { font-size: 14px; }

  .dash-stat-row { grid-template-columns: repeat(2, 1fr); }
  .dash-chart-area { display: none; }
  .dash-orders { display: none; }

  .stats-visuals { grid-template-columns: 1fr; }
  .workflow-icons-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-icon-item { padding: 14px 6px; }

  .section-title { font-size: 22px; }
  .pricing-card { padding: 24px 20px; }
}
