 :root {
      --primary: #2563eb;
      --primary-soft: #dbeafe;
      --primary-border: #1d4ed8;
      --bg-soft: #f8fafc;
    }


    h1, h2, h3, h4 {
      font-family: "Chivo", system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
    }

    .cust-container {
      max-width: 1120px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 1.25rem;
      padding-right: 1.25rem;
    }

    .cust-section-title {
      font-size: 2rem;
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #0f172a;
    }

    @media (min-width: 1024px) {
      .cust-section-title {
        font-size: 2.5rem;
      }
    }

    .cust-section-subtitle {
      margin-top: 0.75rem;
      font-size: 1rem;
      color: #64748b;
    }

    .cust-hero-section {
      position: relative;
      overflow: hidden;
      background: radial-gradient(
          circle at top right,
          rgba(59, 130, 246, 0.15),
          transparent 55%
        ),
        linear-gradient(to bottom right, #eff6ff, #ffffff);
    }

    .cust-gradient-text {
      background: linear-gradient(90deg, #2563eb, #7c3aed);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .cust-badge {
      display: inline-flex;
      align-items: center;
      padding: 0.25rem 0.9rem;
      border-radius: 9999px;
      background-color: #dbeafe;
      color: #1d4ed8;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .cust-badge-dot {
      width: 0.5rem;
      height: 0.5rem;
      border-radius: 9999px;
      background-color: #2563eb;
      margin-right: 0.4rem;
    }

    .cust-btn-primary {
      background-color: var(--primary);
      color: #ffffff;
      border-radius: 0.75rem;
      padding: 0.9rem 2.25rem;
      font-weight: 600;
      font-size: 1rem;
      border: 1px solid var(--primary-border);
      box-shadow: 0 20px 40px rgba(37, 99, 235, 0.25);
      transition: all 150ms ease-out;
    }
    .cust-btn-primary:hover {
      background-color: #1d4ed8;
      transform: translateY(-1px);
      box-shadow: 0 24px 50px rgba(37, 99, 235, 0.3);
    }

    .cust-btn-outline {
      border-radius: 0.75rem;
      padding: 0.9rem 2.25rem;
      font-weight: 600;
      font-size: 1rem;
      border: 2px solid #e2e8f0;
      color: #0f172a;
      background-color: #ffffff;
      transition: all 150ms ease-out;
    }
    .cust-btn-outline:hover {
      background-color: #f9fafb;
      transform: translateY(-1px);
    }

    .cust-avatar-ring {
      box-shadow: 0 0 0 2px #ffffff;
    }

    .cust-card-soft {
      border-radius: 0.9rem;
      background-color: #f8fafc;
      border: 1px solid #e2e8f0;
    }

    .cust-feature-card {
      border-radius: 0.9rem;
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
      transition: transform 150ms ease-out, box-shadow 150ms ease-out;
    }
    .cust-feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    .cust-pricing-card {
      border-radius: 1rem;
      background-color: #020617;
      border: 1px solid rgba(148, 163, 184, 0.4);
      color: #e5e7eb;
    }

    .cust-testimonial-card {
      border-radius: 1rem;
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
    }

    .cust-footer-link {
      color: #cbd5f5;
      font-size: 0.9rem;
    }
    .cust-footer-link:hover {
      text-decoration: underline;
    }