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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e2e8f0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.nav-menu a {
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-menu a:hover {
  color: #4f46e5;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

.btn-secondary {
  background: white;
  color: #4f46e5;
  border: 2px solid #4f46e5;
}

.btn-secondary:hover {
  background: #f8fafc;
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  padding: 80px 24px;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 20px;
}

.hero-description {
  font-size: 18px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-cta-link {
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 2px;
}

.hero-cta-link:hover {
  color: #4f46e5;
  border-bottom-color: #4f46e5;
}

.hero-demo-note {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid #e2e8f0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.stat-label {
  font-size: 13px;
  color: #64748b;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
  border: 1px solid #e2e8f0;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e2e8f0;
}

.card-header h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}

.card-header p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #dcfce7;
  color: #166534;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

.leaderboard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leaderboard-item {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px;
  border-radius: 12px;
  background: #f8fafc;
  transition: background 0.2s ease;
}

.leaderboard-item:hover {
  background: #f1f5f9;
}

.leaderboard-first {
  background: linear-gradient(to right, #fef3c7, #fefce8);
  border: 2px solid #fbbf24;
}

.rank-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.rank-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.rank-silver {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.rank-bronze {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: white;
}

.avatar-gold {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.avatar-silver {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.avatar-bronze {
  background: linear-gradient(135deg, #fb923c, #f97316);
}

.user-name {
  font-weight: 600;
  font-size: 15px;
  color: #0f172a;
}

.user-meta {
  font-size: 12px;
  color: #64748b;
  margin-top: 2px;
}

.revenue {
  font-weight: 700;
  font-size: 16px;
  color: #0f172a;
}

.trend {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
}

.trend-up {
  color: #166534;
  background: #dcfce7;
}

.trend-flat {
  color: #475569;
  background: #f1f5f9;
}

/* Video Section */
.video-section {
  padding: 100px 24px;
  background: #f8fafc;
}

.section-container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 16px;
}

.section-header p {
  font-size: 18px;
  color: #475569;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.video-wrapper {
  position: relative;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.15);
  background: #000;
}

.video-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-caption {
  text-align: center;
  margin-top: 20px;
}

.video-caption p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* Problem Section */
.problem-section {
  padding: 100px 24px;
  background: white;
}

.problem-content {
  max-width: 800px;
  margin: 0 auto;
}

.problem-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 20px;
  text-align: center;
}

.problem-lead {
  font-size: 20px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 60px;
  text-align: center;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-item {
  display: flex;
  gap: 16px;
}

.problem-icon {
  font-size: 32px;
  flex-shrink: 0;
  color: #94a3b8;
  line-height: 1;
}

.problem-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.problem-item p {
  font-size: 15px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Solution Section */
.solution-section {
  padding: 100px 24px;
  background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}

.solution-header h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 20px;
}

.solution-header p {
  font-size: 20px;
  color: #475569;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.solution-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.solution-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #4f46e5;
  line-height: 1;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.solution-card p {
  font-size: 16px;
  color: #475569;
  margin: 0 0 20px;
  line-height: 1.7;
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-card ul li {
  font-size: 14px;
  color: #64748b;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.solution-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* How It Works */
.how-section {
  padding: 100px 24px;
  background: white;
}

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

.step {
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.step h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}

.step p {
  font-size: 16px;
  color: #475569;
  margin: 0 0 20px;
  line-height: 1.7;
}

.step ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step ul li {
  font-size: 14px;
  color: #64748b;
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.step ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4f46e5;
  font-weight: 700;
}

/* Benefits Section */
.benefits-section {
  padding: 100px 24px;
  background: #f8fafc;
}

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

.benefits-content h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0 0 20px;
}

.benefits-lead {
  font-size: 18px;
  color: #475569;
  margin: 0 0 40px;
  line-height: 1.7;
}

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

.benefit-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.benefit-item p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.7;
}

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

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.testimonial-quote {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  line-height: 1.4;
}

.testimonial-text {
  font-size: 16px;
  color: #475569;
  margin: 0 0 24px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 16px;
  color: #0f172a;
}

.testimonial-role {
  font-size: 14px;
  color: #64748b;
  margin-top: 2px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 24px;
  background: white;
}

.pricing-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  border: 2px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.pricing-header {
  padding: 32px 32px 24px;
  border-bottom: 1px solid #e2e8f0;
  text-align: center;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
}

.pricing-header p {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.pricing-body {
  padding: 32px;
  text-align: center;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: #64748b;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
}

.price-period {
  font-size: 18px;
  color: #64748b;
}

.pricing-note {
  font-size: 15px;
  color: #475569;
  margin: 0 0 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-features li {
  font-size: 15px;
  color: #475569;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
}

.pricing-cta {
  padding: 32px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

.pricing-cta h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  text-align: center;
}

.pricing-cta > p {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 24px;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: white;
  color: #0f172a;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #4f46e5;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
  margin-bottom: 12px;
}

.form-note {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin: 16px 0 0;
}

.form-note.is-success {
  color: #047857;
}

.form-note.is-error {
  color: #b91c1c;
}

/* Programmatic SEO */
.pseo-index-section {
  padding: 100px 24px;
  background: white;
}

.pseo-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.pseo-index-grid a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  color: #0f172a;
  background: #f8fafc;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.pseo-index-grid a:hover {
  transform: translateY(-2px);
  border-color: #4f46e5;
  background: #eef2ff;
}

.pseo-hero {
  padding: 72px 24px 88px;
  background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.pseo-container {
  max-width: 1120px;
  margin: 0 auto;
}

.pseo-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.pseo-summary {
  padding: 30px;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  background: white;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.08);
}

.pseo-summary h2 {
  margin: 0 0 18px;
  color: #0f172a;
  font-size: 22px;
}

.pseo-summary ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.pseo-summary li {
  padding: 10px 0 10px 26px;
  position: relative;
  color: #475569;
  font-size: 15px;
}

.pseo-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 800;
}

.pseo-section {
  padding: 88px 24px;
  background: white;
}

.pseo-section-muted {
  background: #f8fafc;
}

.pseo-two-columns {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.pseo-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #4f46e5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pseo-two-columns h2 {
  margin: 0;
  color: #0f172a;
  font-size: 34px;
  line-height: 1.18;
}

.pseo-copy-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pseo-copy-block h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 18px;
}

.pseo-copy-block p,
.pseo-muted {
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}

.pseo-steps,
.pseo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pseo-step,
.pseo-card {
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: white;
}

.pseo-step span,
.pseo-card-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 800;
}

.pseo-step p,
.pseo-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.65;
}

.pseo-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pseo-faq-item {
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: white;
}

.pseo-faq-item summary {
  color: #0f172a;
  cursor: pointer;
  font-weight: 800;
}

.pseo-faq-item p {
  margin: 12px 0 0;
  color: #475569;
  line-height: 1.7;
}

.pseo-cta {
  max-width: 780px;
  padding: 44px;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.pseo-cta h2 {
  margin: 0 0 12px;
  color: #0f172a;
  font-size: 34px;
}

.pseo-cta > p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #475569;
  font-size: 17px;
  line-height: 1.7;
}

.pseo-section-related {
  padding-top: 0;
}

.pseo-section-related h2 {
  margin: 0 0 20px;
  color: #0f172a;
  font-size: 26px;
}

.pseo-related-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pseo-related-links a {
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  color: #0f172a;
  background: #f8fafc;
  text-decoration: none;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 40px 24px;
  background: #0f172a;
  color: #cbd5e1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-weight: 700;
  font-size: 18px;
  color: white;
}

.footer-tagline {
  font-size: 13px;
  color: #94a3b8;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links span {
  color: #475569;
}

/* Legal pages */
.legal-lp {
  background: #f8fafc;
  padding: 56px 24px;
}

.legal-lp-document {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.08);
  margin: 0 auto;
  max-width: 900px;
  padding: 40px;
}

.legal-lp-kicker {
  color: #4f46e5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-lp-document h1 {
  color: #0f172a;
  font-size: 38px;
  line-height: 1.15;
  margin: 6px 0 10px;
}

.legal-lp-document h2 {
  color: #0f172a;
  font-size: 20px;
  margin: 30px 0 10px;
}

.legal-lp-document p,
.legal-lp-document li {
  color: #475569;
  font-size: 15px;
  line-height: 1.75;
}

.legal-lp-document ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.legal-lp-document a {
  color: #4f46e5;
  font-weight: 700;
}

.legal-lp-updated {
  color: #64748b;
  margin-bottom: 24px;
}

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

  .hero-visual {
    order: -1;
  }

  .problem-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .pseo-hero-grid,
  .pseo-two-columns {
    grid-template-columns: 1fr;
  }

  .pseo-steps,
  .pseo-cards,
  .pseo-related-links,
  .pseo-index-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

  .nav-container {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.14;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero {
    overflow: hidden;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-container,
  .hero-content,
  .hero-visual,
  .hero-card {
    min-width: 0;
  }

  .hero-container {
    width: 326px;
    max-width: 100%;
  }

  .hero-content,
  .hero-visual,
  .hero-card {
    width: 100%;
    max-width: 100%;
  }

  .hero-card {
    padding: 18px;
    overflow: hidden;
  }

  .card-header {
    gap: 12px;
  }

  .badge-live {
    display: none;
  }

  .hero-title,
  .hero-description,
  .leaderboard,
  .user-info {
    max-width: 100%;
    min-width: 0;
  }

  .hero-title {
    overflow-wrap: break-word;
  }

  .hero-title,
  .hero-description,
  .hero-cta {
    width: 294px;
    max-width: 100%;
    padding-right: 0;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .leaderboard-item {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .leaderboard-item .revenue {
    grid-column: 2;
    justify-self: start;
    font-size: 15px;
  }

  .leaderboard-item .trend {
    display: none;
  }

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

  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }

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

  .problem-content h2,
  .solution-header h2,
  .benefits-content h2 {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .legal-lp {
    padding: 28px 14px;
  }

  .legal-lp-document {
    border-radius: 12px;
    padding: 24px;
  }

  .legal-lp-document h1 {
    font-size: 30px;
  }

  .pseo-index-grid,
  .pseo-steps,
  .pseo-cards,
  .pseo-related-links {
    grid-template-columns: 1fr;
  }

  .pseo-two-columns h2,
  .pseo-cta h2 {
    font-size: 28px;
  }

  .pseo-cta {
    padding: 28px 20px;
  }
}
