.page-main {
  padding-top: 48px;
}

.page-hero {
  text-align: center;
  margin-bottom: 48px;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 52px);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.page-grid {
  display: grid;
  gap: 28px;
}

.page-grid--cards {
  margin: 1em 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.page-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);

  .example-metrics {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    display: grid;
    gap: 10px;
  }

  .example-metrics li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border-radius: var(--radius-xs);
    background: rgba(148, 163, 184, 0.12);
    color: var(--text-primary);
    font-size: 14px;
  }

  .example-metrics li span {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
  }

  .example-metrics li strong {
    font-weight: 700;
    font-size: 14px;
  }

  .example-insight {
    margin-top: 20px;
    margin-bottom: 16px;
    padding: 16px;
    border-left: 3px solid rgba(99, 102, 241, 0.4);
    background: rgba(99, 102, 241, 0.08);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    display: grid;
    gap: 8px;
  }

  .example-insight h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
  }

  .example-insight ul {
    margin: 0;
    padding-left: 20px;
  }

  .example-insight li {
    margin-bottom: 8px;
    line-height: 1.6;
  }
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.page-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.page-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.page-card p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-card a {
  color: var(--primary);
  font-weight: 600;
}

.page-highlight {
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.1),
    rgba(244, 114, 182, 0.12)
  );
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.section-divider {
  margin: 72px 0 0;
}

.page-copy {
  color: var(--text-muted);
}

.page-copy h2 {
  color: var(--text-primary);
  font-size: clamp(26px, 4vw, 32px);
  margin-top: 48px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  padding-bottom: 12px;
}

.page-copy h3 {
  color: var(--primary);
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.page-copy ul {
  padding-left: 20px;
}

.page-copy li {
  margin-bottom: 14px;
}

.page-copy table {
  margin: 28px 0;
}

.meta-text {
  color: var(--text-muted);
  font-size: 14px;
}

.link-inline {
  color: var(--primary);
  font-weight: 600;
}

.plan-card {
  display: grid;
  gap: 16px;
}

.plan-price {
  font-size: 34px;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-price span {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-meta {
  font-size: 14px;
  color: var(--text-muted);
}

.roi-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.roi-output {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(99, 102, 241, 0.08);
  border: 1px solid rgba(99, 102, 241, 0.18);
}

.faq-list {
  display: grid;
  gap: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--text-primary);
}

.faq-item p {
  margin: 0;
  color: var(--text-muted);
}

@media (max-width: 720px) {
  .page-card {
    padding: 24px;
  }

  .surface-section {
    padding: 32px 20px;
  }

  .plan-price {
    font-size: 30px;
  }

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

#footer {
  position: relative;
  background: radial-gradient(
      circle at top left,
      rgba(99, 102, 241, 0.12),
      transparent 40%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(236, 72, 153, 0.12),
      transparent 42%
    ),
    #0f172a;
  color: rgba(255, 255, 255, 0.78);
  padding: 80px 0 48px;
  overflow: hidden;
}

#footer::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(99, 102, 241, 0.15) 0%,
    transparent 70%
  );
  filter: blur(12px);
}

#footer::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -200px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(236, 72, 153, 0.15) 0%,
    transparent 75%
  );
  filter: blur(18px);
}

#footer .container {
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  padding: 48px 0;
}

.footer-column h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-column a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-column span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #ffffff;
}

@media (max-width: 720px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
