/* ═══════════════════════════════════════════════════════════════════════
   obra360 — Enfoque Logístico — Stylesheet
   ═══════════════════════════════════════════════════════════════════════ */

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

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;

  --indigo-500: #6366f1;
  --indigo-600: #4f46e5;

  --purple-500: #a855f7;
  --purple-600: #9333ea;

  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;

  --orange-500: #f97316;
  --amber-500:  #f59e0b;
  --teal-500:   #14b8a6;
  --red-500:    #ef4444;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  --white: #ffffff;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.08);
  --shadow-xl: 0 32px 64px rgba(0,0,0,.18);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,99,235,.35);
}
.btn--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 6px 20px rgba(37,99,235,.45);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--blue-600);
  border: 2px solid var(--blue-200);
}
.btn--outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-400);
}

.btn--ghost {
  background: transparent;
  color: var(--slate-600);
  border: 1.5px solid var(--slate-200);
}
.btn--ghost:hover {
  background: var(--slate-100);
  color: var(--slate-800);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.3);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.btn--sm  { padding: 8px 16px; font-size: 0.875rem; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Section Shared ────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: var(--blue-300); }
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--slate-500);
  max-width: 640px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue-600), var(--indigo-500), var(--purple-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Navbar ────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--slate-100);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.navbar__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}

.navbar__logo {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}
.logo-mark {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -.03em;
}
.logo-accent {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--blue-600);
  letter-spacing: -.03em;
}
.logo-by {
  font-size: 0.72rem;
  color: var(--slate-400);
  font-weight: 500;
  margin-left: 4px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-600);
  transition: color var(--transition);
}
.navbar__links a:hover { color: var(--blue-600); }
.navbar__links a.nav-active { color: var(--blue-600); font-weight: 600; }

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

.navbar__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.navbar__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate-700);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  padding: 140px 0 0;
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
  overflow: hidden;
  position: relative;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--slate-500);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero__subtitle strong { color: var(--slate-700); }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  box-shadow: var(--shadow);
  max-width: 720px;
  margin: 0 auto 56px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}
.stat__num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--blue-600);
  letter-spacing: -.03em;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--slate-500);
  font-weight: 500;
  text-align: center;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--slate-200);
}

/* Dashboard Mockup */
.hero__mockup-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
}

.dashboard-mockup {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--red    { background: #ff5f57; }
.dot--yellow { background: #febc2e; }
.dot--green  { background: #28c840; }
.mockup__url {
  margin-left: 8px;
  font-size: 0.75rem;
  color: var(--slate-500);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  padding: 3px 12px;
}

.mockup__body {
  display: flex;
  min-height: 340px;
}

.mockup__sidebar {
  width: 160px;
  background: var(--slate-900);
  padding: 16px 0;
  flex-shrink: 0;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.78rem;
  color: var(--slate-400);
  font-weight: 500;
  transition: all var(--transition);
}
.sidebar-item--active {
  background: rgba(59,130,246,.15);
  color: var(--blue-400);
  border-left: 3px solid var(--blue-500);
}

.mockup__content {
  flex: 1;
  padding: 20px;
  background: var(--slate-50);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup__kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.kpi {
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid var(--slate-200);
}
.kpi__label { display: block; font-size: 0.7rem; color: var(--slate-500); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.kpi__value { display: block; font-size: 1.3rem; font-weight: 800; margin-bottom: 2px; }
.kpi__delta { display: block; font-size: 0.7rem; }
.kpi--green .kpi__value { color: var(--green-600); }
.kpi--green .kpi__delta { color: var(--green-500); }
.kpi--blue  .kpi__value { color: var(--blue-600); }
.kpi--blue  .kpi__delta { color: var(--blue-500); }
.kpi--purple .kpi__value { color: var(--purple-600); }
.kpi--purple .kpi__delta { color: var(--purple-500); }

.mockup__chart-area {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 16px;
  flex: 1;
}
.chart-title { font-size: 0.78rem; font-weight: 700; color: var(--slate-700); margin-bottom: 16px; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 100px;
}
.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.chart-bar {
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: height .6s ease;
}
.chart-bar--income { background: linear-gradient(180deg, var(--blue-500), var(--blue-600)); }
.chart-bar--cost   { background: linear-gradient(180deg, var(--slate-300), var(--slate-400)); }
.chart-label { font-size: 0.65rem; color: var(--slate-400); margin-top: 4px; }
.chart-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--slate-500);
}
.legend-dot {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 2px;
  margin-right: 4px;
}
.legend-dot--income { background: var(--blue-500); }
.legend-dot--cost   { background: var(--slate-400); }

/* ─── Pain Section ──────────────────────────────────────────────────────── */
.pain {
  padding: 96px 0;
  background: var(--white);
}

.pain__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.pain-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}
.pain-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.pain-card__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pain-card__icon--red    { background: #fef2f2; color: var(--red-500); }
.pain-card__icon--orange { background: #fff7ed; color: var(--orange-500); }
.pain-card__icon--yellow { background: #fffbeb; color: var(--amber-500); }

.pain-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 16px;
}

.pain-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.pain-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--red-500);
  font-size: 0.75rem;
  top: 2px;
}

.pain__result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: #9a3412;
}
.pain__result svg { flex-shrink: 0; color: var(--orange-500); margin-top: 2px; }
.pain__result p { font-size: 0.95rem; line-height: 1.6; }

/* ─── Product / Suites ──────────────────────────────────────────────────── */
.product {
  padding: 96px 0;
  background: var(--slate-50);
}

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

.suite-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.suite-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue-200);
}

.suite-card__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.suite-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.suite-icon--blue   { background: var(--blue-50);   color: var(--blue-600); }
.suite-icon--green  { background: #f0fdf4;           color: var(--green-600); }
.suite-icon--orange { background: #fff7ed;           color: var(--orange-500); }
.suite-icon--purple { background: #faf5ff;           color: var(--purple-600); }
.suite-icon--teal   { background: #f0fdfa;           color: var(--teal-500); }
.suite-icon--indigo { background: #eef2ff;           color: var(--indigo-600); }
.suite-icon--amber  { background: #fffbeb;           color: var(--amber-500); }
.suite-icon--slate  { background: var(--slate-100);  color: var(--slate-600); }

.suite-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 2px;
}
.suite-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-800);
}
.suite-card p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
}

.suite-features {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.suite-features li {
  position: relative;
  padding-left: 16px;
  font-size: 0.8rem;
  color: var(--slate-600);
}
.suite-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-500);
  font-weight: 700;
}

/* ─── Impact ────────────────────────────────────────────────────────────── */
.impact {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--slate-900) 0%, var(--blue-900) 100%);
  color: var(--white);
}
.impact .section-title { color: var(--white); }

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

.impact-col__icon {
  width: 64px; height: 64px;
  background: rgba(59,130,246,.2);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-400);
  margin-bottom: 20px;
}

.impact-col h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.impact-items { display: flex; flex-direction: column; gap: 20px; }

.impact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.impact-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--blue-400);
  letter-spacing: -.03em;
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1.1;
}
.impact-check {
  font-size: 1.1rem;
  color: var(--green-400);
  flex-shrink: 0;
  margin-top: 2px;
}
.impact-desc {
  font-size: 0.88rem;
  color: var(--slate-300);
  line-height: 1.5;
}

/* ─── Compliance ────────────────────────────────────────────────────────── */
.compliance {
  padding: 96px 0;
  background: var(--white);
}

.compliance__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.compliance__text p {
  font-size: 1rem;
  color: var(--slate-500);
  margin-bottom: 28px;
  line-height: 1.7;
}
.compliance__text .section-title { text-align: left; margin-bottom: 16px; }
.compliance__text .section-eyebrow { display: block; text-align: left; }

.compliance__badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-700);
}
.comp-badge svg { color: var(--green-500); flex-shrink: 0; }

.compliance__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.comp-detail-card {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 24px;
}
.comp-detail-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 12px;
}
.comp-detail-card ul { display: flex; flex-direction: column; gap: 8px; }
.comp-detail-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.5;
}
.comp-detail-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-size: 0.8rem;
}

/* ─── Compare ───────────────────────────────────────────────────────────── */
.compare {
  padding: 96px 0;
  background: var(--slate-50);
}

.compare__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.compare__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.compare__table th, .compare__table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--slate-100);
}
.compare__table thead th {
  background: var(--slate-800);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
}
.compare__table thead th:first-child { border-radius: var(--radius-lg) 0 0 0; }
.compare__table thead th:last-child  { border-radius: 0 var(--radius-lg) 0 0; }

.th--highlight { background: var(--blue-600) !important; }
.td--highlight { background: var(--blue-50); }
.td--yes  { font-size: 1.1rem; }
.td--no   { font-size: 1.1rem; color: var(--slate-400); }
.td--partial { font-size: 0.85rem; color: var(--amber-500); }

.compare__table tbody tr:hover td { background: var(--slate-50); }
.compare__table tbody tr:hover .td--highlight { background: var(--blue-100); }
.compare__table tbody tr:last-child td { border-bottom: none; }

/* ─── Pricing ───────────────────────────────────────────────────────────── */
.pricing {
  padding: 96px 0;
  background: var(--white);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card--popular {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12), var(--shadow-lg);
  transform: scale(1.03);
}
.pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }

.pricing-card--enterprise {
  background: var(--slate-900);
  border-color: var(--slate-700);
  color: var(--white);
}
.pricing-card--enterprise .pricing-desc { color: var(--slate-400); }
.pricing-card--enterprise .pricing-features li { color: var(--slate-300); }
.pricing-card--enterprise .pricing-features svg { stroke: var(--green-400); }

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-600);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.pricing-tier-badge--green  { background: #f0fdf4; color: var(--green-600); }
.pricing-tier-badge--blue   { background: var(--blue-50); color: var(--blue-700); }
.pricing-tier-badge--purple { background: #faf5ff; color: var(--purple-600); }
.pricing-tier-badge--dark   { background: rgba(255,255,255,.1); color: var(--slate-300); }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}
.price-from { font-size: 0.8rem; color: var(--slate-400); }
.price-amount {
  font-size: 2rem;
  font-weight: 900;
  color: var(--slate-900);
  letter-spacing: -.04em;
}
.pricing-card--enterprise .price-amount { color: var(--white); }
.price-period { font-size: 0.8rem; color: var(--slate-400); }

.pricing-desc { font-size: 0.85rem; color: var(--slate-500); line-height: 1.6; }

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate-600);
  line-height: 1.4;
}
.pricing-features svg { flex-shrink: 0; stroke: var(--green-500); margin-top: 2px; }

.pricing__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: var(--slate-500);
}
.pricing__note a { color: var(--blue-600); font-weight: 600; }
.pricing__note a:hover { text-decoration: underline; }

/* ─── Roadmap ───────────────────────────────────────────────────────────── */
.roadmap {
  padding: 96px 0;
  background: var(--slate-50);
}

.roadmap__timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.timeline-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-marker {
  width: 52px; height: 52px;
  background: var(--blue-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 0 6px var(--blue-50);
}
.timeline-num {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.timeline-connector {
  flex: 0 0 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), var(--blue-500));
  margin-top: 26px;
  position: relative;
  z-index: 0;
}

.timeline-period {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 8px;
}
.timeline-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.83rem;
  color: var(--slate-500);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── Security ──────────────────────────────────────────────────────────── */
.security {
  padding: 96px 0;
  background: var(--white);
}

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

.security-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}
.security-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--blue-200);
  transform: translateY(-2px);
}
.security-item svg {
  color: var(--blue-600);
  margin-bottom: 16px;
}
.security-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 8px;
}
.security-item p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.6;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq {
  padding: 96px 0;
  background: var(--slate-50);
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-800);
  text-align: left;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--blue-600); }
.faq-question[aria-expanded="true"] { color: var(--blue-600); }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--slate-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.2s ease;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.9rem;
  color: var(--slate-600);
  line-height: 1.7;
}

/* ─── CTA / Demo ────────────────────────────────────────────────────────── */
.cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--blue-600) 0%, var(--indigo-600) 50%, var(--purple-600) 100%);
}

.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.cta__text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.cta__text p {
  font-size: 1rem;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
}

.cta__form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-xl);
}
.cta__form h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 24px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--slate-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,.12);
}

.form-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--slate-500);
}
.form-note a { color: var(--blue-600); font-weight: 600; }

.form-success {
  text-align: center;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success svg { color: var(--green-500); }
.form-success h4 { font-size: 1.2rem; font-weight: 800; color: var(--slate-800); }
.form-success p  { font-size: 0.9rem; color: var(--slate-500); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--slate-900);
  color: var(--slate-400);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  padding: 64px 24px;
}

.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 8px;
}
.footer__logo .logo-mark { font-size: 1.5rem; color: var(--white); }
.footer__logo .logo-accent { font-size: 1.5rem; color: var(--blue-400); }

.footer__brand p {
  font-size: 0.82rem;
  margin-bottom: 4px;
}
.footer__tagline {
  margin-top: 12px !important;
  line-height: 1.6;
  max-width: 280px;
}
.footer__email {
  margin-top: 16px !important;
}
.footer__email a {
  color: var(--blue-400);
  font-weight: 600;
  font-size: 0.88rem;
}
.footer__email a:hover { text-decoration: underline; }

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

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__col a {
  font-size: 0.85rem;
  color: var(--slate-400);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--slate-800);
  padding: 20px 24px;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .suites__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--popular { transform: none; }
  .pricing-card--popular:hover { transform: translateY(-4px); }
}

@media (max-width: 900px) {
  .pain__grid { grid-template-columns: 1fr; }
  .impact__grid { grid-template-columns: 1fr; }
  .compliance__inner { grid-template-columns: 1fr; gap: 40px; }
  .security__grid { grid-template-columns: repeat(2, 1fr); }
  .cta__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .roadmap__timeline { flex-direction: column; align-items: center; gap: 0; }
  .timeline-connector { width: 2px; height: 40px; background: linear-gradient(180deg, var(--blue-300), var(--blue-500)); flex: 0 0 40px; }
  .timeline-item { width: 100%; max-width: 400px; }
  .timeline-content p { max-width: 100%; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__actions { display: none; }
  .navbar__burger { display: flex; }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--slate-200);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .navbar__links.open + .navbar__actions {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(68px + 180px); left: 0; right: 0;
    background: var(--white);
    padding: 0 24px 20px;
    z-index: 999;
  }

  .hero { padding: 120px 0 0; }
  .hero__stats { flex-direction: column; gap: 16px; padding: 20px; }
  .stat__divider { width: 40px; height: 1px; }
  .mockup__sidebar { display: none; }
  .mockup__kpis { grid-template-columns: 1fr; }

  .suites__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .security__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ─── Próximos Pasos ────────────────────────────────────────────────────── */
.proximos {
  padding: 96px 0;
  background: var(--white);
}

.coming-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.coming-pill::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.coming-pill--check {
  background: #f0fdf4;
  color: var(--green-600);
  border: 1px solid #bbf7d0;
}
.coming-pill--check::before { background: var(--green-500); }
.coming-pill--bot {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}
.coming-pill--bot::before { background: #25d366; }

.next-feature {
  border-radius: var(--radius-xl);
  padding: 56px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.next-feature--check {
  background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
  border: 1.5px solid #bbf7d0;
}
.next-feature--bot {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1.5px solid #a7f3d0;
}

.next-feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.next-feature__inner--reverse { direction: rtl; }
.next-feature__inner--reverse > * { direction: ltr; }

.next-feature__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.next-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.next-icon--check { background: #dcfce7; color: var(--green-600); }
.next-icon--bot   { background: #dcfce7; color: #15803d; }

.next-feature__text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0;
}

.next-feature__desc {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 28px;
}
.next-feature__desc strong { color: var(--slate-800); }

.next-feature__how { margin-bottom: 24px; }
.next-feature__how h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-500);
  margin-bottom: 16px;
}

/* obraCheck steps */
.how-steps { display: flex; flex-direction: column; gap: 14px; }
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.how-step__num {
  width: 28px; height: 28px;
  background: var(--green-500);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.how-step strong {
  display: block;
  font-size: 0.88rem;
  color: var(--slate-800);
  margin-bottom: 2px;
}
.how-step span {
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* obraBot roles */
.bot-roles { display: flex; flex-direction: column; gap: 14px; }
.bot-role {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,.7);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.bot-role__icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bot-role__icon--blue   { background: var(--blue-50);  color: var(--blue-600); }
.bot-role__icon--orange { background: #fff7ed;          color: var(--orange-500); }
.bot-role__icon--green  { background: #f0fdf4;          color: var(--green-600); }
.bot-role strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 2px;
}
.bot-role span {
  font-size: 0.8rem;
  color: var(--slate-500);
  line-height: 1.5;
}

/* Chips */
.next-feature__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}
.chip--check {
  background: #dcfce7;
  color: var(--green-600);
  border: 1px solid #bbf7d0;
}
.chip--bot {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid #a7f3d0;
}

/* ── obraCheck mockup ─────────────────────────────────────────────────── */
.check-mockup {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.check-mockup__screen {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.check-mockup__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.check-face {
  position: relative;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue-50), #f0fdf4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-400);
}
.check-scan-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px dashed var(--green-400);
  animation: spin 3s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.check-status {
  font-size: 0.82rem;
  font-weight: 600;
}
.check-status--scanning { color: var(--blue-600); }

.check-mockup__info {
  background: var(--slate-50);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.check-label { font-size: 0.75rem; color: var(--slate-400); font-weight: 600; }
.check-value { font-size: 0.85rem; font-weight: 700; color: var(--slate-700); }
.check-value--green { color: var(--green-600); }

.check-mockup__footer {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid var(--slate-100);
  padding-top: 16px;
}
.check-stat { text-align: center; }
.check-stat__num {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--slate-800);
}
.check-stat__num--red    { color: var(--red-500); }
.check-stat__num--orange { color: var(--orange-500); }
.check-stat__label { font-size: 0.7rem; color: var(--slate-400); }

.check-mockup__devices {
  background: var(--slate-900);
  padding: 14px 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.device-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--slate-300);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
}

/* ── obraBot mockup ───────────────────────────────────────────────────── */
.bot-mockup {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  max-width: 400px;
}
.bot-mockup__header {
  background: #075e54;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.bot-avatar {
  width: 40px; height: 40px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.bot-name { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.bot-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  color: rgba(255,255,255,.7);
}
.bot-dot {
  width: 7px; height: 7px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.wa-icon {
  margin-left: auto;
  color: #25d366;
}

.bot-messages {
  background: #e5ddd5;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 280px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9b99a' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.bot-msg {
  max-width: 82%;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.5;
  position: relative;
}
.bot-msg--user {
  background: #dcf8c6;
  align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
  color: var(--slate-800);
}
.bot-msg--bot {
  background: var(--white);
  align-self: flex-start;
  border-radius: 12px 12px 12px 2px;
  color: var(--slate-800);
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.bot-msg--bot strong { color: #075e54; }

.bot-typing {
  align-self: flex-start;
  background: var(--white);
  border-radius: 12px 12px 12px 2px;
  padding: 12px 16px;
  display: flex;
  gap: 4px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0,0,0,.1);
}
.bot-typing span {
  width: 7px; height: 7px;
  background: var(--slate-400);
  border-radius: 50%;
  animation: botTyping 1.2s infinite;
}
.bot-typing span:nth-child(2) { animation-delay: .2s; }
.bot-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes botTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.bot-input {
  background: var(--white);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--slate-100);
}
.bot-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--slate-500);
  background: transparent;
  font-family: var(--font);
}
.bot-input button {
  width: 36px; height: 36px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

/* Próximos CTA */
.proximos__cta {
  text-align: center;
  background: linear-gradient(135deg, var(--blue-50), #f0fdf4);
  border: 1.5px dashed var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.proximos__cta p {
  font-size: 1.1rem;
  color: var(--slate-700);
}
.proximos__cta strong { color: var(--slate-900); }

/* Timeline next items */
.timeline-marker--next {
  background: linear-gradient(135deg, var(--green-500), var(--teal-500));
  box-shadow: 0 0 0 6px #f0fdf4;
}
.timeline-connector--next {
  background: linear-gradient(90deg, var(--green-300), var(--teal-400));
  border-top: 2px dashed;
  background: none;
  border-color: var(--green-300);
  height: 0;
  border-style: dashed;
}
.timeline-period--next {
  color: var(--green-600);
}
.timeline-item--next .timeline-content h3 { color: var(--green-700); }

/* Footer next links */
.footer-link--next {
  color: #4ade80 !important;
  font-size: 0.82rem !important;
}
.footer-link--next:hover { color: #86efac !important; }

/* Responsive próximos */
@media (max-width: 900px) {
  .next-feature { padding: 32px 24px; }
  .next-feature__inner { grid-template-columns: 1fr; gap: 32px; }
  .next-feature__inner--reverse { direction: ltr; }
  .bot-mockup { max-width: 100%; }
}

/* ─── Scroll animations ─────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
