/* Analytto Landing — standalone styles */

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary: #10b981;
  --accent: #8b5cf6;
  --accent-pink: #ec4899;
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --gray-600: #475569;
  --gray-400: #94a3b8;
  --gray-100: #f1f5f9;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #2563eb 100%);
  --gradient-card: linear-gradient(145deg, rgba(37, 99, 235, 0.08) 0%, rgba(139, 92, 246, 0.06) 100%);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 20px 60px rgba(15, 23, 42, 0.18);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Vazirmatn', 'Tahoma', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── Navbar ── */
.navbar-analytto {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.navbar-analytto.scrolled {
  background: rgba(15, 23, 42, 0.97);
  box-shadow: var(--shadow-md);
}

.navbar-brand-analytto {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white) !important;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}

.navbar-analytto .nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: var(--transition);
}

.navbar-analytto .nav-link:hover,
.navbar-analytto .nav-link.active {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white !important;
  border: none;
  padding: 0.5rem 1.25rem !important;
  border-radius: 10px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
  color: white !important;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid-bg {
  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;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  color: white;
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.45);
  color: white;
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero mockup */
.hero-visual {
  position: relative;
  z-index: 2;
}

.dashboard-mockup {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background: #ef4444; }
.mockup-dot.yellow { background: #f59e0b; }
.mockup-dot.green { background: #22c55e; }

.mockup-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-right: auto;
}

.mockup-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.mockup-kpi {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}

.mockup-kpi .val {
  font-size: 1.4rem;
  font-weight: 800;
  color: white;
}

.mockup-kpi .lbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
}

.mockup-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
}

.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), var(--accent));
  border-radius: 3px 3px 0 0;
  opacity: 0.8;
  animation: grow-bar 1.5s ease-out forwards;
  transform-origin: bottom;
  transform: scaleY(0);
}

@keyframes grow-bar {
  to { transform: scaleY(1); }
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.floating-card.card-1 {
  top: -20px;
  left: -30px;
  animation-delay: -1s;
}

.floating-card.card-2 {
  bottom: 30px;
  right: -25px;
  animation-delay: -2.5s;
}

.floating-card.card-3 {
  top: 45%;
  left: -35px;
  animation-delay: -0.5s;
}

.floating-card.card-3 .icon-wrap {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}

.floating-card .icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-card.card-1 .icon-wrap {
  background: rgba(16, 185, 129, 0.15);
  color: var(--secondary);
}

.floating-card.card-2 .icon-wrap {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* ── Sections ── */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--gray-100);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 680px;
  margin-bottom: 3rem;
}

/* ── Module cards ── */
.module-card {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--card-accent, var(--primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.module-card:hover::before {
  transform: scaleX(1);
}

.module-card-featured {
  border: 2px solid rgba(236, 72, 153, 0.35);
  background: linear-gradient(145deg, rgba(236, 72, 153, 0.06) 0%, rgba(139, 92, 246, 0.04) 100%);
}

.module-new-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  z-index: 1;
}

.module-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.module-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.module-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.module-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.module-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-weight: 500;
}

/* ── Feature detail blocks ── */
.feature-block {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 2rem;
}

.feature-block-header {
  padding: 2rem 2.5rem;
  background: var(--gradient-card);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.feature-block-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.feature-block-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.feature-block-header p {
  color: var(--gray-600);
  margin: 0;
  font-size: 0.95rem;
}

.feature-block-body {
  padding: 2rem 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--gray-100);
  border-radius: 12px;
  transition: var(--transition);
}

.feature-item:hover {
  background: rgba(37, 99, 235, 0.06);
}

.feature-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* ── Showcase (product screenshots) ── */
.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse .showcase-media {
  order: 2;
}

.showcase-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  transition: var(--transition);
}

.showcase-media:hover {
  transform: translateY(-6px);
}

.showcase-media img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.showcase-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.showcase-text p {
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.showcase-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}

.showcase-list li i {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
  }

  .showcase-row.reverse .showcase-media {
    order: 0;
  }
}

/* ── AI Spotlight ── */
.ai-spotlight {
  background: var(--gradient-hero);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.ai-spotlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.15), transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(37, 99, 235, 0.2), transparent 45%);
  pointer-events: none;
}

.ai-spotlight .container {
  position: relative;
  z-index: 1;
}

.ai-new-badge {
  background: rgba(236, 72, 153, 0.2) !important;
  color: #fbcfe8 !important;
  border: 1px solid rgba(236, 72, 153, 0.35);
}

.ai-spotlight-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.ai-spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.ai-spotlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}

.ai-spotlight-list li i {
  color: #34d399;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ── AI Report Mockup ── */
.ai-report-mockup {
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
}

.ai-report-mockup-light {
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-md);
}

.ai-mockup-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-report-mockup-light .ai-mockup-header {
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

.ai-mockup-title {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  margin-right: auto;
}

.ai-report-mockup-light .ai-mockup-title {
  color: var(--gray-600);
}

.ai-mockup-score {
  text-align: center;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.ai-report-mockup-light .ai-mockup-score {
  background: rgba(16, 185, 129, 0.08);
}

.ai-score-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.25rem;
}

.ai-report-mockup-light .ai-score-label {
  color: var(--gray-600);
}

.ai-score-value {
  font-size: 2.5rem;
  font-weight: 800;
  color: #34d399;
  line-height: 1;
}

.ai-score-max {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.ai-report-mockup-light .ai-score-max {
  color: var(--gray-400);
}

.ai-mockup-summary {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
}

.ai-mockup-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ai-mock-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  font-size: 0.82rem;
}

.ai-report-mockup-light .ai-mock-block {
  background: var(--gray-100);
}

.ai-mock-block strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.ai-report-mockup-light .ai-mock-block strong {
  color: var(--dark);
}

.ai-priority {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ai-priority.urgent {
  background: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.ai-priority.important {
  background: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
}

.ai-priority.suggested {
  background: rgba(37, 99, 235, 0.2);
  color: #93c5fd;
}

.ai-report-mockup-light .ai-priority.urgent {
  background: rgba(239, 68, 68, 0.12);
  color: #dc2626;
}

.ai-report-mockup-light .ai-priority.important {
  background: rgba(245, 158, 11, 0.15);
  color: #d97706;
}

.ai-report-mockup-light .ai-priority.suggested {
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
}

.showcase-media-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--gray-100);
  min-height: 320px;
}

.showcase-media-mockup .ai-report-mockup {
  width: 100%;
  max-width: 420px;
}

/* ── Comparison table ── */
.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}

.compare-table thead {
  background: var(--dark);
  color: white;
}

.compare-table th,
.compare-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: right;
  font-weight: 600;
}

.compare-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.03);
}

.compare-table .highlight-col {
  background: rgba(37, 99, 235, 0.06);
}

.check-yes {
  color: var(--secondary);
  font-size: 1.2rem;
}

.check-no {
  color: var(--gray-400);
  font-size: 1.2rem;
}

.check-partial {
  color: #f59e0b;
  font-size: 1.2rem;
}

/* ── Audience cards ── */
.audience-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: var(--transition);
  height: 100%;
}

.audience-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
}

.audience-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.audience-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Timeline / How it works ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}

.step-card {
  position: relative;
  background: white;
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  right: 50%;
  transform: translateX(50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.step-card h4 {
  font-weight: 700;
  margin: 0.75rem 0 0.5rem;
  font-size: 1rem;
}

.step-card p {
  color: var(--gray-600);
  font-size: 0.85rem;
  margin: 0;
}

/* ── FAQ ── */
.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: right;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(37, 99, 235, 0.04);
}

.faq-question .icon {
  transition: transform var(--transition);
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── CTA ── */
.cta-section {
  background: var(--gradient-hero);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer h5 {
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* ── Tech badges ── */
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tech-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .hero {
    padding-top: 100px;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .floating-card {
    display: none;
  }

  .feature-block-header,
  .feature-block-body {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }

  .mockup-kpis {
    grid-template-columns: 1fr;
  }
}

/* ── Back to top ── */
#backToTop.show {
  opacity: 1 !important;
  pointer-events: auto;
}

#backToTop:not(.show) {
  pointer-events: none;
}
