/* ═══════════════════════════════════════════════════════════
   NEXORIA ERP — LANDING PAGE
   Neo-brutalist design system matching the Nexoria app identity
   Colors: lime (#c0fe06), ink (#1b1b1b), lavender (#e3dfff),
           pink-soft (#ffdad6), blue (#3d1bff)
   Font: Space Grotesk
   ═══════════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --lime: #c0fe06;
  --lime-dim: #a8e000;
  --ink: #1b1b1b;
  --ink-80: rgba(27, 27, 27, 0.8);
  --ink-40: rgba(27, 27, 27, 0.4);
  --ink-10: rgba(27, 27, 27, 0.1);
  --ink-05: rgba(27, 27, 27, 0.05);
  --surface: #fafafa;
  --surface-low: #f3f3f3;
  --surface-mid: #eeeeee;
  --white: #ffffff;
  --muted: #434933;
  --blue: #3d1bff;
  --pink: #b90062;
  --pink-soft: #ffdad6;
  --lavender: #e3dfff;
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow-md: 5px 5px 0 var(--ink);
  --shadow-lg: 7px 7px 0 var(--ink);
  --radius-sm: 0px;
  --radius-md: 0px;
  --transition-fast: 0.18s ease;
  --transition-med: 0.3s ease;
  --max-width: 1200px;
}

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

body {
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(to right, var(--ink-05) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-05) 1px, transparent 1px),
    var(--surface);
  background-size: 64px 64px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.feature-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.feature-card.reveal:nth-child(6) { transition-delay: 0.4s; }

.problem-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.problem-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.problem-card.reveal:nth-child(4) { transition-delay: 0.3s; }

.testimonial-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 0.24s; }

.pricing-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.pricing-card.reveal:nth-child(3) { transition-delay: 0.24s; }

.role-card.reveal { transition-delay: calc(var(--i, 0) * 0.04s); }

.showcase-feature.reveal:nth-child(2) { transition-delay: 0.08s; }
.showcase-feature.reveal:nth-child(3) { transition-delay: 0.16s; }
.showcase-feature.reveal:nth-child(4) { transition-delay: 0.24s; }

.dq-item.reveal:nth-child(2) { transition-delay: 0.08s; }
.dq-item.reveal:nth-child(3) { transition-delay: 0.16s; }
.dq-item.reveal:nth-child(4) { transition-delay: 0.24s; }
.dq-item.reveal:nth-child(5) { transition-delay: 0.32s; }


/* ── SECTION UTILITIES ── */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  border: 2px solid var(--ink);
  background: var(--lime);
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.navbar.scrolled {
  border-bottom-color: var(--ink);
  box-shadow: 0 4px 24px var(--ink-10);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo {
  border: 2px solid var(--ink);
}

.nav-brand-text {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

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

.nav-link {
  padding: 8px 14px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--muted);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

.nav-link:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow-sm);
}

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

.btn-secondary-nav {
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  background: var(--white);
  transition: all var(--transition-fast);
}

.btn-secondary-nav:hover {
  box-shadow: var(--shadow-sm);
  transform: translate(-1px, -1px);
}

.btn-primary-nav {
  padding: 8px 18px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border: 2px solid var(--ink);
  background: var(--lime);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.btn-primary-nav:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.btn-primary-nav:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

.mobile-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  transition: all var(--transition-fast);
}

.mobile-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.mobile-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.mobile-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}


/* ═══════════════════════ BUTTONS ═══════════════════════ */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--ink);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translate(5px, 5px);
  box-shadow: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

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

.btn-block {
  display: flex;
  width: 100%;
  text-align: center;
}


/* ═══════════════════════ HERO ═══════════════════════ */
.hero {
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 2px solid var(--ink);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(42px, 6.5vw, 82px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-line-1 {
  display: block;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-line-2 {
  display: block;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-line-3 {
  display: block;
  animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-accent {
  color: var(--white);
  background: var(--ink);
  padding: 0 12px;
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-description {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.55;
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.trust-item svg {
  color: var(--lime-dim);
}

.hero-visual {
  position: relative;
  animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image-wrapper {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.hero-stat-card {
  position: absolute;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: floatIn 1.2s ease infinite alternate;
}

.hero-stat-1 {
  bottom: -16px;
  left: -24px;
  animation-delay: 0s;
}

.hero-stat-2 {
  top: 20px;
  right: -20px;
  animation-delay: 0.6s;
}

.hero-stat-card .stat-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.hero-stat-card strong {
  font-size: 28px;
  line-height: 1;
}

.hero-stat-card .stat-up {
  font-size: 12px;
  font-weight: 700;
  color: #2d7a0f;
  background: var(--lime);
  padding: 2px 6px;
  display: inline-block;
  border: 1px solid var(--ink-10);
}

.hero-stat-card .stat-warn {
  font-size: 12px;
  font-weight: 700;
  color: #93000a;
  background: var(--pink-soft);
  padding: 2px 6px;
  display: inline-block;
  border: 1px solid var(--ink-10);
}

@keyframes floatIn {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-scroll-indicator {
  text-align: center;
  margin-top: 48px;
  animation: bounceDown 2s infinite;
  color: var(--ink-40);
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}


/* ═══════════════════════ SOCIAL PROOF ═══════════════════════ */
.social-proof {
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  padding: 32px 24px;
}

.proof-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-stat strong {
  font-size: 32px;
  line-height: 1;
  color: var(--lime);
}

.proof-stat span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.7;
}

.proof-divider {
  width: 2px;
  height: 40px;
  background: rgba(192, 254, 6, 0.25);
}


/* ═══════════════════════ SLOGAN BANNER ═══════════════════════ */
.slogan-banner {
  padding: 60px 24px;
  background: var(--surface-low);
  border-bottom: 2px solid var(--ink);
}

.slogan-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.slogan-box {
  background: var(--lavender);
  border: 3px solid var(--ink);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.slogan-tag {
  background: var(--ink);
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--ink);
  align-self: center;
}

.slogan-quote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--ink);
  max-width: 900px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.slogan-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.sbadge {
  background: var(--white);
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.sbadge:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.sbadge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  display: inline-block;
}


/* ═══════════════════════ PROBLEMS ═══════════════════════ */
.problems {
  padding: 100px 24px;
}

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

.problem-card {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--transition-fast);
}

.problem-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
}

.problem-icon-red {
  background: var(--pink-soft);
  color: #93000a;
}

.problem-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.15;
}

.problem-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}


/* ═══════════════════════ FEATURES ═══════════════════════ */
.solution {
  padding: 100px 24px;
  background: var(--surface-low);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

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

.feature-card {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: all var(--transition-fast);
}

.feature-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-md);
}

.feature-card-highlight {
  background: var(--lime);
}

.feature-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  opacity: 0.12;
  position: absolute;
  top: 16px;
  right: 20px;
}

.feature-icon-wrap {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--surface-low);
}

.feature-card-highlight .feature-icon-wrap {
  background: var(--white);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.feature-card-highlight p {
  color: var(--ink-80);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 4px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.feature-list li::before {
  content: "→";
  font-weight: 800;
  color: var(--ink);
}


/* ═══════════════════════ SHOWCASE ═══════════════════════ */
.showcase {
  padding: 100px 24px;
}

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

.showcase-reverse .showcase-grid {
  direction: rtl;
}

.showcase-reverse .showcase-grid > * {
  direction: ltr;
}

.showcase-image {
  position: relative;
}

.showcase-image img {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.showcase-float-badge {
  position: absolute;
  bottom: -12px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--ink);
  background: var(--lime);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.showcase-copy .section-tag {
  margin-bottom: 12px;
}

.showcase-copy h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.showcase-copy > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 32px;
}

.showcase-features {
  display: grid;
  gap: 16px;
}

.showcase-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sf-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--lime);
}

.sf-icon-warn {
  background: var(--pink-soft);
}

.showcase-feature div strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.showcase-feature div span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}


/* ── DASHBOARD QUESTIONS ── */
.dashboard-questions {
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.dq-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--transition-fast);
}

.dq-item:hover {
  background: var(--lime);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.dq-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  background: var(--surface-low);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}


/* ═══════════════════════ ROLES ═══════════════════════ */
.roles-section {
  padding: 100px 24px;
  background: var(--ink);
  color: var(--white);
  border-top: 2px solid var(--ink);
}

.roles-section .section-tag {
  background: transparent;
  color: var(--lime);
  border-color: var(--lime);
}

.roles-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.role-card {
  border: 2px solid rgba(192, 254, 6, 0.3);
  background: rgba(255,255,255,0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition-fast);
}

.role-card:hover {
  border-color: var(--lime);
  background: rgba(192, 254, 6, 0.08);
  transform: translateY(-3px);
}

.role-card-owner {
  border-color: var(--lime);
  background: rgba(192, 254, 6, 0.12);
  grid-column: span 2;
}

.role-card-icon {
  font-size: 28px;
  line-height: 1;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4px;
}

.role-card-icon svg {
  width: 28px;
  height: 28px;
}

.role-card strong {
  font-size: 16px;
  text-transform: uppercase;
}

.role-card span {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}


/* ═══════════════════════ BENEFITS ═══════════════════════ */
.benefits-section {
  padding: 100px 24px;
  border-top: 2px solid var(--ink);
}

.benefits-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-fast);
}

.benefit-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-md);
}

.benefit-card-highlight {
  background: var(--lime);
  box-shadow: var(--shadow-md);
}

.benefit-stat-num {
  font-size: 54px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.benefit-card-highlight p {
  color: var(--ink-80);
}


/* ═══════════════════════ BUSINESS TYPES ═══════════════════════ */
.business-types {
  padding: 80px 24px;
  border-top: 2px solid var(--ink);
  background: var(--surface-low);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.business-card {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-fast);
}

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

.business-icon {
  font-size: 32px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  color: var(--ink);
}

.business-icon svg {
  width: 32px;
  height: 32px;
}

.business-card strong {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 800;
}


/* ═══════════════════════ PRICING ═══════════════════════ */
.pricing {
  padding: 100px 24px;
  border-top: 2px solid var(--ink);
}

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

.pricing-card {
  border: 2px solid var(--ink);
  background: var(--white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all var(--transition-fast);
}

.pricing-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-md);
}

.pricing-card-popular {
  border-width: 3px;
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  background: var(--lime);
}

.pricing-card-popular:hover {
  transform: scale(1.03) translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--lime);
  padding: 4px 20px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 2px solid var(--ink);
  white-space: nowrap;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-name {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

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

.pricing-price strong {
  font-size: 42px;
  line-height: 1;
}

.pricing-price span {
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

.pricing-description {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.pricing-card-popular .pricing-features li svg {
  stroke: var(--ink);
}

/* Pricing IA Banner styles */
.pricing-ia-banner-wrapper {
  margin-top: 36px;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
}

.pricing-ia-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: fadeInUp 0.6s ease both;
}

.pricing-ia-banner svg {
  stroke: var(--white);
  flex-shrink: 0;
}

/* Pricing Toggle styles */
.pricing-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 8px 16px;
  box-shadow: var(--shadow-sm);
}

.toggle-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--ink);
}

.toggle-discount {
  background: var(--lime);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border: 1px solid var(--ink);
  margin-left: 6px;
  text-transform: uppercase;
  vertical-align: middle;
}

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-low);
  border: 2px solid var(--ink);
  transition: .2s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: var(--ink);
  transition: .2s;
}

input:checked + .slider {
  background-color: var(--lime);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.price-latam {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  margin-top: -2px;
}

.price-billing {
  font-size: 11px;
  font-weight: 800;
  color: #2d7a0f;
  background: rgba(192, 254, 6, 0.2);
  border: 1px solid rgba(27,27,27,0.15);
  padding: 4px 8px;
  text-align: center;
  margin-top: 8px;
  text-transform: uppercase;
  animation: fadeInUp 0.3s ease both;
}

.pricing-footers {
  margin-top: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-conditions {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}

.pricing-custom {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
}

.pricing-custom a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: underline;
}

.pricing-custom a:hover {
  color: var(--lime-dim);
}

/* Add-ons Section */
.addons-section {
  margin-top: 80px;
  border-top: 2px dashed var(--ink);
  padding-top: 60px;
}

.addons-header {
  text-align: center;
  margin-bottom: 32px;
}

.addons-header h3 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.addons-header p {
  font-size: 15px;
  color: var(--muted);
}

.addons-table-wrapper {
  max-width: 720px;
  margin: 0 auto;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.addons-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.addons-table th, 
.addons-table td {
  padding: 16px 24px;
  border-bottom: 2px solid var(--ink);
}

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

.addons-table th {
  background: var(--lime);
  color: var(--ink);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.addons-table td {
  font-size: 14px;
  font-weight: 600;
}

.addons-table td strong {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.badge-single {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--surface-low);
  border: 1px solid var(--ink);
  padding: 2px 6px;
  margin-left: 6px;
  vertical-align: middle;
}


/* ═══════════════════════ FAQ ═══════════════════════ */
.faq {
  padding: 100px 24px;
  background: var(--surface-low);
  border-top: 2px solid var(--ink);
}

.faq-grid {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 2px solid var(--ink);
  background: var(--white);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 18px 24px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] {
  background: var(--lime);
  box-shadow: var(--shadow-sm);
}

.faq-item p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--ink-80);
  line-height: 1.55;
}

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


/* ═══════════════════════ FINAL CTA ═══════════════════════ */
.final-cta {
  padding: 100px 24px;
  border-top: 2px solid var(--ink);
}

.cta-card {
  max-width: 820px;
  margin: 0 auto;
  border: 3px solid var(--ink);
  background: var(--lime);
  padding: 56px 48px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 16px;
  color: var(--ink-80);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-micro {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.cta-card .btn-primary {
  background: var(--ink);
  color: var(--lime);
  box-shadow: none;
  border-color: var(--ink);
}

.cta-card .btn-primary:hover {
  box-shadow: 0 0 0 4px rgba(27,27,27,0.3);
}


/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  padding: 56px 24px 32px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}


/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

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

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

  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showcase-reverse .showcase-grid {
    direction: ltr;
  }

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

  .benefits-grid .benefit-card:last-child {
    grid-column: span 2;
  }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--ink);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    display: none;
    box-shadow: 0 8px 32px var(--ink-10);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 12px;
    text-align: center;
  }

  .nav-actions {
    display: none;
  }

  .mobile-hamburger {
    display: flex;
    margin-left: auto;
  }

  .hero {
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero-stat-1 {
    left: 0;
    bottom: -10px;
  }

  .hero-stat-2 {
    right: 0;
    top: 10px;
  }

  .proof-container {
    flex-direction: column;
    gap: 20px;
  }

  .proof-divider {
    width: 40px;
    height: 2px;
  }

  .problems-grid,
  .features-grid,
  .benefits-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid .benefit-card:last-child,
  .pricing-grid .pricing-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .pricing-card-popular {
    transform: scale(1);
  }

  .pricing-card-popular:hover {
    transform: translate(-3px, -3px);
  }

  .role-card-owner {
    grid-column: span 1;
  }

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

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

  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .cta-card {
    padding: 40px 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

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

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

  .section-header h2 {
    font-size: 28px;
  }
}
