/*
Theme Name: astic
Description: Simple landing theme for astghikpoints with WebP converter
Version: 1.0
*/

:root {
  --ast-bg: #f5f5f8;
  --ast-bg-elevated: #ffffff;
  --ast-surface: #ffffff;
  --ast-surface-strong: #f0f0f5;
  --ast-border: rgba(124, 58, 237, 0.35);
  --ast-border-soft: rgba(15, 23, 42, 0.12);
  --ast-text: #1a1625;
  --ast-muted: #5c566b;
  --ast-link: #6d28d9;
  --ast-link-hover: #5b21b6;
  --ast-accent: #8b5cf6;
  --ast-accent-2: #0891b2;
  --ast-header-bg: rgba(255, 255, 255, 0.92);
}

/* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  background-color: var(--ast-bg);
  background-image: radial-gradient(
      ellipse 100% 70% at 50% -15%,
      rgba(139, 92, 246, 0.09),
      transparent 55%
    ),
    radial-gradient(
      ellipse 55% 45% at 100% 20%,
      rgba(34, 211, 238, 0.06),
      transparent 48%
    );
  background-attachment: fixed;
  color: var(--ast-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--ast-link);
}

a:hover {
  color: var(--ast-link-hover);
}

:focus-visible {
  outline: 2px solid var(--ast-accent-2);
  outline-offset: 2px;
}

/* Header */
.site-header {
  background: var(--ast-header-bg);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--ast-border-soft);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  gap: 1rem 1.25rem;
  align-items: center;
}

.site-logo {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ast-text);
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover {
  color: var(--ast-accent);
}

.site-nav {
  justify-self: center;
}

.site-nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  justify-content: center;
}

.site-nav-list a {
  color: var(--ast-text);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.site-nav-list a:hover {
  color: var(--ast-link);
}

.header-auth {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-self: end;
  font-size: 0.9375rem;
}

.header-auth-link {
  color: var(--ast-text);
  text-decoration: none;
  font-weight: 500;
}

.header-auth-link:hover {
  color: var(--ast-link);
}

.header-auth-signup {
  color: var(--ast-link);
}

.header-auth-sep {
  color: var(--ast-muted);
  user-select: none;
}

/* Main content */
.site-main {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

.ast-page-shell {
  max-width: 1200px;
}

/* Converter pages: theme affects page chrome only; converter UI stays from assets/webp/css */
.ast-page-shell .legal-content,
.ast-page-shell .page-content {
  color: var(--ast-text);
}

/* Footer */
.site-footer {
  background: var(--ast-bg-elevated);
  padding: 2rem 0;
  margin-top: 4rem;
  border-top: 1px solid var(--ast-border-soft);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr) minmax(0, auto);
  gap: 1rem 1.25rem;
  align-items: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--ast-border-soft);
}

.footer-brand-name {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ast-text);
}

.footer-primary-nav {
  justify-self: center;
}

.footer-primary-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  align-items: center;
  justify-content: center;
}

.footer-primary-list a {
  color: var(--ast-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  transition: color 0.2s;
}

.footer-primary-list a:hover {
  color: var(--ast-link);
}

.footer-primary-sep {
  color: var(--ast-border-soft);
  font-size: 0.75rem;
  user-select: none;
}

.footer-auth {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  justify-self: end;
  font-size: 0.875rem;
}

.footer-auth-link {
  color: var(--ast-muted);
  text-decoration: none;
}

.footer-auth-link:hover {
  color: var(--ast-link);
}

.footer-auth-sep {
  color: var(--ast-border-soft);
  user-select: none;
}

.footer-nav {
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.footer-nav a {
  color: var(--ast-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--ast-link);
}

.footer-copyright {
  text-align: center;
  color: var(--ast-muted);
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--ast-muted);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 20px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ast-accent), #6366f1);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(1.08);
  opacity: 0.95;
}

.btn-secondary {
  background: var(--ast-surface-strong);
  color: var(--ast-text);
  border: 1px solid var(--ast-border-soft);
}

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

/* Form elements */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ast-text);
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--ast-border-soft);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--ast-surface);
  color: var(--ast-text);
  transition: border-color 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--ast-accent);
}

.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-option input[type='radio'] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.radio-option label {
  cursor: pointer;
  font-weight: 400;
  color: var(--ast-text);
}

/* Subscribe section */
.subscribe-section {
  background: var(--ast-surface);
  border: 1px solid var(--ast-border-soft);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  padding: 2rem;
  margin-top: 3rem;
}

.subscribe-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--ast-text);
}

/* WebP partial helpers (static styles moved from PHP; progressBar keeps inline width) */
.webp-resize-field-label {
  display: block;
  font-size: 0.75rem;
  color: #6e6e73;
  margin-bottom: 0.25rem;
}

.webp-button-full-width {
  width: 100%;
  margin-top: 1.5rem;
}

/* Legal pages typography */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--ast-text);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--ast-text);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--ast-text);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--ast-muted);
}

.legal-content ul,
.legal-content ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
  color: var(--ast-muted);
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.page-content {
  line-height: 1.8;
  color: var(--ast-muted);
}

.page-content p {
  margin-bottom: 1rem;
}

.page-content a {
  color: var(--ast-link);
}

/* Payment checkout page */
.payment-checkout-container {
  max-width: 1000px;
  margin: 0 auto;
}

.payment-checkout-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--ast-text);
}

.payment-notice {
  color: var(--ast-muted);
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.payment-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.payment-method-column,
.payment-summary-column {
  display: flex;
  flex-direction: column;
}

.payment-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ast-text);
}

.payment-info-line {
  color: var(--ast-muted);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.payment-method-card {
  background: var(--ast-surface);
  border: 1px solid var(--ast-border-soft);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.payment-method-card:hover {
  border-color: var(--ast-border);
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.payment-method-logos {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.payment-logo-badge {
  background: var(--ast-surface-strong);
  color: var(--ast-text);
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.payment-method-label {
  font-weight: 500;
  color: var(--ast-text);
  font-size: 0.9375rem;
}

.payment-purchase-details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ast-border-soft);
}

.payment-purchase-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--ast-text);
}

.payment-purchase-info {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.payment-purchase-info:last-child {
  margin-bottom: 0;
}

.payment-purchase-label {
  color: var(--ast-muted);
  font-weight: 500;
}

.payment-purchase-value {
  color: var(--ast-text);
}

.payment-summary-details {
  background: var(--ast-surface-strong);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--ast-border-soft);
}

.payment-items-list {
  margin-bottom: 1rem;
}

.payment-item-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--ast-border-soft);
}

.payment-item-row:last-child {
  border-bottom: none;
}

.payment-item-info {
  flex: 1;
  min-width: 0;
}

.payment-item-title {
  font-weight: 500;
  color: var(--ast-text);
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.payment-item-id {
  font-size: 0.8125rem;
  color: var(--ast-muted);
}

.payment-item-price {
  font-weight: 500;
  color: var(--ast-text);
  font-size: 0.9375rem;
  margin-left: 1rem;
  flex-shrink: 0;
}

.payment-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.payment-summary-row:first-child {
  padding-top: 0;
}

.payment-summary-label {
  color: var(--ast-muted);
  font-size: 0.9375rem;
}

.payment-summary-value {
  font-weight: 500;
  color: var(--ast-text);
  font-size: 0.9375rem;
}

.payment-summary-divider {
  height: 1px;
  background: var(--ast-border-soft);
  margin: 0.75rem 0;
}

.payment-summary-total {
  padding-top: 0.75rem;
  border-top: 1px solid var(--ast-border-soft);
  margin-top: 0.5rem;
}

.payment-summary-total .payment-summary-label {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ast-text);
}

.payment-summary-total .payment-summary-value {
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--ast-text);
}

.payment-terms-checkbox {
  margin-bottom: 1.5rem;
}

.payment-terms-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--ast-text);
  line-height: 1.5;
}

.payment-terms-checkbox input[type='checkbox'] {
  margin-top: 0.125rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.payment-terms-checkbox a {
  color: var(--ast-link);
  text-decoration: none;
}

.payment-terms-checkbox a:hover {
  text-decoration: underline;
}

.payment-continue-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.payment-continue-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.payment-continue-btn.processing {
  opacity: 0.7;
  cursor: wait;
}

.payment-info-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #fef9c3;
  border: 1px solid #eab308;
  border-radius: 8px;
  color: #854d0e;
  font-size: 0.875rem;
  text-align: center;
}

/* Payment error page */
.payment-error-container {
  max-width: 600px;
  margin: 0 auto;
}

.payment-error-card {
  text-align: center;
}

.payment-error-card h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f87171;
}

.payment-error-message {
  font-size: 1.125rem;
  color: var(--ast-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .header-container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-nav {
    justify-self: center;
  }

  .site-nav-list {
    flex-direction: column;
    gap: 0.75rem;
  }

  .header-auth {
    justify-self: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-primary-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-primary-sep {
    display: none;
  }

  .footer-auth {
    justify-self: center;
  }

  .footer-nav ul {
    flex-direction: column;
    gap: 0.75rem;
  }

  .payment-checkout-title {
    font-size: 1.5rem;
  }

  .payment-checkout-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .payment-method-column {
    order: 2;
  }

  .payment-summary-column {
    order: 1;
  }

  .ast-card-grid,
  .ast-card-grid-3 {
    grid-template-columns: 1fr;
  }

  .ast-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ast-btn {
    text-align: center;
    justify-content: center;
  }

  .ast-section-cta-split {
    flex-direction: column;
    align-items: stretch;
  }

  .ast-inline-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

/* GPU homepage landing (.ast-landing) */
.ast-landing {
  max-width: 900px;
}

.ast-hero {
  position: relative;
  text-align: center;
  padding: 2rem 0 2.5rem;
}

.ast-hero::before {
  content: '';
  position: absolute;
  inset: -2rem -2rem 0.5rem;
  background: radial-gradient(
      ellipse 85% 65% at 50% -5%,
      rgba(139, 92, 246, 0.14),
      transparent 58%
    ),
    radial-gradient(
      ellipse 55% 45% at 95% 35%,
      rgba(34, 211, 238, 0.1),
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
  border-radius: 1.25rem;
}

.ast-hero > * {
  position: relative;
  z-index: 1;
}

.ast-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ast-text);
}

.ast-lead {
  font-size: 1.125rem;
  color: var(--ast-muted);
  max-width: 40rem;
  margin: 0 auto 1rem;
}

.ast-muted {
  font-size: 0.9375rem;
  color: var(--ast-muted);
  max-width: 38rem;
  margin: 0 auto 1.25rem;
}

.ast-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.ast-hero-account {
  margin-top: 1rem;
  font-size: 0.9375rem;
  color: var(--ast-muted);
}

.ast-hero-account a {
  color: var(--ast-link);
  font-weight: 500;
}

.ast-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 980px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s;
  border: 2px solid transparent;
}

.ast-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.ast-btn-primary {
  background: linear-gradient(135deg, var(--ast-accent), #6366f1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.35);
}

.ast-btn-secondary {
  background: var(--ast-surface-strong);
  color: var(--ast-text);
  border-color: var(--ast-border-soft);
}

.ast-btn-outline {
  background: var(--ast-surface);
  color: var(--ast-text);
  border-color: var(--ast-border-soft);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
}

.ast-section {
  padding: 2.25rem 0;
  border-top: 1px solid var(--ast-border-soft);
}

.ast-section h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--ast-text);
}

.ast-section-muted,
.ast-daz-section {
  background: var(--ast-surface-strong);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--ast-border-soft);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.ast-section > p {
  color: var(--ast-muted);
  margin-bottom: 1rem;
}

.ast-intro {
  margin-bottom: 1.25rem;
  color: var(--ast-muted);
}

.ast-bullet-list {
  margin: 0;
  padding-left: 1.35rem;
  color: var(--ast-muted);
}

.ast-bullet-list li {
  margin-bottom: 0.5rem;
}

.ast-bullet-list-tight li {
  margin-bottom: 0.35rem;
}

.ast-subsections h3 {
  font-size: 1.0625rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--ast-text);
}

.ast-subsections h3:first-child {
  margin-top: 0;
}

.ast-subsections p {
  color: var(--ast-muted);
  margin-bottom: 0.75rem;
}

.ast-section-cta {
  margin-top: 1.5rem;
}

.ast-section-cta-split {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.ast-link-standalone {
  color: var(--ast-link);
  font-weight: 500;
}

.ast-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.75rem 0 1.25rem;
}

.ast-h3-tools {
  font-size: 1.0625rem;
  margin: 1.5rem 0 0.75rem;
  color: var(--ast-text);
}

.ast-tool-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.5rem 1rem;
}

.ast-tool-links a {
  color: var(--ast-link);
  font-weight: 500;
  font-size: 0.9375rem;
}

.ast-price-placeholder {
  font-style: italic;
  color: var(--ast-muted);
  font-size: 0.9375rem;
}

.ast-pricing-note {
  margin-top: 1.25rem;
}

.ast-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.ast-card-grid-3 {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.ast-card {
  background: var(--ast-surface);
  border: 1px solid var(--ast-border-soft);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
}

.ast-card-highlight {
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.18);
}

.ast-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ast-text);
}

.ast-card p {
  font-size: 0.9375rem;
  color: var(--ast-muted);
}

.ast-price {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--ast-text);
}

.ast-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ast-muted);
  margin-bottom: 0.5rem;
}

.ast-steps {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--ast-muted);
}

.ast-steps li {
  margin-bottom: 0.5rem;
}

.ast-pricing-teaser {
  background: var(--ast-surface);
  border: 1px solid var(--ast-border-soft);
  border-radius: 12px;
  padding: 1.25rem;
  color: var(--ast-muted);
}

.ast-pricing-teaser strong {
  color: var(--ast-text);
}

.ast-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ast-link-list li {
  margin-bottom: 0.5rem;
}

.ast-link-list a {
  color: var(--ast-link);
  font-weight: 500;
}

.ast-faq dt {
  font-weight: 600;
  margin-top: 1rem;
  color: var(--ast-text);
}

.ast-faq dt:first-child {
  margin-top: 0;
}

.ast-faq dd {
  margin: 0.35rem 0 0;
  color: var(--ast-muted);
  font-size: 0.9375rem;
}

.ast-cta-final {
  text-align: center;
  padding-bottom: 3rem;
}

.ast-cta-final h2 {
  margin-bottom: 0.5rem;
}

.ast-cta-final p {
  margin-bottom: 1rem;
  color: var(--ast-muted);
}
