/* GLOBAL DESIGN SYSTEM (Matching Landing + Pricing Pages) */

:root {
  --ink: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --brand-500: #2563eb;
  --brand-600: #1d4ed8;
  --accent-500: #22c55e;
  --border: #e2e8f0;
  --soft: #f8faff;
  --shadow-card: 0 4px 14px rgba(0,0,0,0.06);
}

body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background: white;
}

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

.center {
  text-align: center;
}

.soft-bg {
  background: var(--soft);
}

/* HERO */
.hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
}

.large {
  font-size: 18px;
  line-height: 28px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.18);
  color: var(--brand-500);
  font-weight: bold;
}

.video-card {
  margin-top: 40px;
  padding: 20px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.video-player {
  background: #0f172a;
  border-radius: 12px;
  position: relative;
  padding-top: 56.2%;
}

.video-player .video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--brand-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  cursor: pointer;
  transition: 0.2s;
}

.play-btn:hover {
  transform: scale(1.05);
}

.video-title {
  color: white;
  font-weight: bold;
  margin-top: 8px;
}

.video-length {
  color: #94a3b8;
  font-size: 13px;
}

/* EXPERIENCE */
.grid2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-500);
  font-size: 24px;
  margin-bottom: 12px;
}

.list li {
  font-size: 14px;
  color: var(--text);
}

/* HOW IT WORKS */
.storyboard-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.storyboard {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  box-shadow: var(--shadow-card);
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-500);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 12px;
}

/* QUERIES */
.queries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 16px;
  max-width: 900px;
  margin: auto;
}

.query-btn {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}

.query-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

/* CTA */
.card.big {
  padding: 40px;
}

.btn-primary {
  background: var(--brand-500);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: white;
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--brand-600);
}
